This is small guide on how to install truecrypt on Linux CentOS.
Truecrypt is probably the greatest encryption software that I’ve used to protect my files, unfortunately it has been discontinued by it’s developers for some very strange reasons.
However, that doesn’t mean that you cannot install it on your Linux machine.
So here goes the install process for truecrypt 7.1a, the console version of this crypto tool:
1. Download the tar.gz archive from here or use wget from the command line, see below.
- wget http://nixware.net/wp-content/uploads/2015/06/truecrypt-7.1a-linux-console-x86.tar.gz
2. Extract the truecrypt archive:
tar -xvf ./ truecrypt-7.1a-linux-console-x86.tar.gz
cd ./truecrypt-7.1a-linux-console-x86
3. Give execution permissions to the installer script.
chmod 755 ./truecrypt-7.1a-linux-console-x86
4. Install the requirements: libstdc++.so.6 and libfuse.so.2
yum install libfuse.so.2 libstdc++.so.6
5. Run the truecrypt installer:
[root@lnx truecrypt]# ./truecrypt-7.1a-setup-console-x86
– select option 1
6. Create a new volume with:
/usr/bin/truecrypt -c
– follow the easy steps in the volume setup
7. Mount the container to a specified directory:
[root@nix truecrypt]# truecrypt -t -k "" --protect-hidden=no container1 /media/truecrypt1 Enter password for /home/user1/truecrypt/container1: [root@nix truecrypt]# cd /media/truecrypt1 [root@nix truecrypt1]# ls [root@nix truecrypt1]# pwd /media/truecrypt1
8. Dismount a container:
truecrypt -d
9. (Optional) Check https://www.grc.com/misc/truecrypt/truecrypt.htm for some nice info
That’s it. Have fun hiding your stuff!