Quote:
|
toucan is a standalone encryption program. Encrypted files are useless until the app is used to decrypt it. The good news is that it is for WINE. The source code as well as a GNU Tarball are also available. Doesn't that install a program on some versions of Linux?
|
to install a tarball you need to install first
linux-headers
make
gcc
build-essential
Then in terminal do
for files ending in .tar.gz, use:
You should now have a new directory, containing all of the source files. To confirm it exists, and to get its name, use the "ls" command .
we now need to go into the new directory, so use the cd command:
This is where things will differ. Some packages will have an INSTALL or README file which will contain installation instructions. use "ls" to see if the software has an install or readme file. If it does have one, you can use the "more" command to read it, like so:
Generally, the final 3 stages are as follows:
- Configure the installation
- Compile the software
- Install the binaries
The pre-installation configuration is done by executing ./configure:
The next stage is to compile the software, this is done using "make". When you run "make" it will read the instructions in the Makefile and build the application binaries.
The final stage is to install these binaries, ie, copy them to a more permanent location. Typically only the "root" user can do this, so you will need to swich to the root user with the "su" command:
Once you are root, install the binaries using the "make" command, followed by "install", like so:
That is how you install a source tarball in Linux. It's not for the novice, Thats why I suggested truecrypt. Its available in the repositories in Ubuntu.