Search Blog Posts
Blog Posts
Changing the pass-phrase on my private key file in Apache
Phoenix Technologies & Solutions Blog | December 9th 2009 by travis
Changing the pass-phrase on my private key file in Apache You have to read it with the old pass-phrase and write it again, specifying the new pass-phrase. You can accomplish this with the following commands: $ openssl rsa -des3 -in serve read more
How to mount a USB Hard Drive to FreeBSD
Phoenix Technologies & Solutions Blog | December 8th 2009 by travis
How to mount a USB Hard Drive to FreeBSD mount -t msdos /dev/da0s1 /mnt However that assumes you have a FAT32 partition on the usb drive. Which is fine. If it is a ufs partition the basic command is : mount -t ufs /dev/da0s1 /mnt For more informa read more
How to redirect stderr in Unix
Phoenix Technologies & Solutions Blog | November 6th 2009 by travis
1 = std out file descriptor 2 = std err file descriptor so the following redirects stderr to a file named ‘junk’ rm backup.zip 2>junk and the following redirects both stdout and stderr into a file named junk rm backup.zip 1>junk 2&g read more

Subscribe To