Was able to mount a NAS drive share very easily.
1. Open the Adept Manager
2. Install smbfs (which installed samba-common)
3. At the command line use 'mount -t smbfs //[Share IP]/[path] /mnt/nas
4. Add alias in .bashrc file for quickly mounting share
alias mountnas='mount -t smbfs //[Share IP]/[path] /mnt/nas'
I'll add more on samba as I do more with it...
Friday, January 11, 2008
Tuesday, January 1, 2008
Installing Truecrypt in Kubuntu 7.04
Truecrypt is a free, open-source, multi-platform encryption program. It has worked perfectly for me in Windows XP on multiple computers. The basic concept is you create an password protected encrypted file (volume) of a specified size that holds your private data. It is mounted and treated like another drive on your computer.
Installing truecrypt on Kubuntu was really simple:
Pretty simple and I encountered no errors. I also added some aliases to .bashrc to quickly mount the volumes I use.
Installing truecrypt on Kubuntu was really simple:
- Download the tarball from http://www.truecrypt.org/downloads.php to your home directory. I used truecrypt-4.3a-ubuntu-7.04-x86.tar.gz.
- Move the file to /usr/src/ by typing "sudo mv ~/truecrypt-4.3a-ubuntu-7.04-x86.tar.gz /usr/src"
- unzip and untar the file by typing "sudo tar -xvfz truecrypt-4.3a-ubuntu-7.04-x86.tar.gz"
- cd into the new directory and check out the Readme.txt
- I used the 'dpkg -i' command with no problems typing "sudo dpkg -i truecrypt_4.3a-0_i386.deb"
Pretty simple and I encountered no errors. I also added some aliases to .bashrc to quickly mount the volumes I use.
- Make the directory where your mounted volume will be: 'mkdir /mnt/[mount name]'
- Add an alias in .bashrc to mount the volume: alias mountvolA='truecrypt /media/ExternalDrive/PathToVolume/VolumeName /mnt/volA'
Subscribe to:
Posts (Atom)