How to compile TrueCrypt on Slitaz Linux

PcTek9

Well-Known Member
Reaction score
87
Location
Mobile, AL
So you want a reliable file server for your network.

You want it to be immune from viruses.

You want to be able to save files to a public share from any windows, linux, or mac machine.

You want to be able to scan the linux share with a linux antivirus such as fprot.

You want to be able to encrypt the linux share, in case you stick customer data on it, and someone breaks into your shop over night and steals it.

As you all know I've mentioned that slitaz is a very fast o/s. It has email, web, printing, and other applications and it all runs from 32 meg of ram. It is small and lightning fast.

Truecrypt let's you encrypt a windows or linux machine with any of: aes, blowfish, cast5, serpent, triple DES, twofish, Aes-twofish, awes-twofish-serpent, serpent-aes, serpent-twofish-aes, and twofish-serpent.

So this is really secure stuff, as far as encryption goes.

B/c truecrypt is NOT a click/install package for slitaz, you must use a bit of magic, to get it all installed. Here is how I did it. :D

use the taz package manager to get these click-install packages:
slitaz-toolchain
fuse-dev
gtk+-dev
pkg-config (may already be installed)
dm-setup (this one is in the cooking packages).

**** once you download dm-setup you can go gunzip it, detar it, and install it
**** you can also do that with the package manager if your inclined.
open a vcon window and elevate user status to root using su & your pw.

then type these commands:
mkdir /usr/local/srcpkcs11
mkdir /usr/local/bin
cd /usr/local/src/pkcs11
wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/cryptoki.h
wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11.h
wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11f.h
wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11t.h

**** this command sticks all the rsa header encryption files in /usr/local/src/pkcs11
export PKCS11_INC=/usr/local/src/pkcs11
cd /usr/local/src
wget http://prdownloads.sourceforge.net/wxwindows/wxWidgets-2.8.9.tar.gz

**** take the wxWidgets-2.8.9.tar.gz and unzip it then untar it.
gunzip -d wxWidgets-2.8.9.tar.gz
**** now to untar it
tar -x wxWidgets-2.8.9.tar
**** now download the true crypt source code from truecrypt.com
**** do not get the ready made package for suse or redhat
**** certainly do not get the windows or mac package.
**** make sure you get the source code of truecrypt itself.
gunzip -d truecrypt-6.3a-source.tar.gz
tar -x truecrypt-6.3a-source.tar

**** configure gui interface classes for linux programs.
cd vxWidgets-2.8.9
./configure

**** when that is finished go into truecrypt source code directory below
cd /usr/local/src/truecrypt-6.3-source
**** now that you downloaded, unzipped, and untar'd truecrypt to it's own dir
**** you can start linking everything together.
make WXSTATIC=1 WX_ROOT=/usr/local/src/wxWidgets-2.8.9 wxbuild (1 warning)
**** let's copy the RSA data security header files into our source code dir.
cp /usr/local/src/PKCS11/* /usr/local/src/truecrypt-6.3a-source
make WXSTATIC=1
cp -p ./Main/truecrypt /usr/local/bin

**** then just type ./truecrypt and it looks just identical to the same truecrypt
**** you use in windows, same features and everything. :)
 
Last edited:
Back
Top