Monday 27 May 2013

An Idiots Guide to Installing Truecrypt Quickly and Easily in uBuntu 12.04+

So Truecrypt isn't available in the software centre any more which is a bit of a pain but it's one of those bits of software you can't really do without.

Not to worry.

1. Open up the terminal and type:

For 32bit systems...

wget http://www.truecrypt.org/download/truecrypt-7.1a-linux-x86.tar.gz

Or for 64bit systems...

http://www.truecrypt.org/download/truecrypt-7.1a-linux-x64.tar.gz

2. Extract it... 

tar -zxvf truecrypt*.gz

3. And install it... 

sudo ./truecrypt-7.1a-setup-x86  

And your done!

1 comment:

  1. To install Truecrypt from http://namhuy.net/889/how-to-install-truecrypt-on-ubuntu.html

    $ wget http://www.truecrypt.org/download/truecrypt-7.1a-linux-x86.tar.gz
    $ tar xzvf truecrypt*.tar.gz
    $ ./truecrypt-7.1a-setup-x86

    Create truecrypt key:

    $ truecrypt --create-keyfile /etc/tc.key \
    --hash=Whirlpool \
    --random-source=/dev/urandom

    Change permissions for truecrypt key

    $ chown 600 /etc/tc.key

    ReplyDelete