1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
(Brief) Installation instructions for libpst:
---------------------------------------------
NOTE: If you're using a Debian-based Linux distribution, ignore these
instructions and just grab the packages from the main Debian archive using
apt-get (ie. `apt-get install readpst`).
0) Download the source code for the latest version of libpst:
wget http://alioth.debian.org/download.php/844/libpst-0.5.1.tar.gz
1) Unpack the tarball:
tar xvzf libpst-0.5.1.tar.gz
[ You should now have a directory called libpst-0.5.1.tar.gz ]
2) Change to the source directory:
cd ./libpst-0.5.1/
2) Compile the source code:
make
3) Become root:
su - root
4) Install the program:
make install
5) Check that all is good:
readpst -V
That's all folks!
To learn how to use the program read the manpage (run: `man readpst`); or
for the quick version run the program with no arguments.
|