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'
No comments:
Post a Comment