Leave a comment

Building From Source

The programs that I choose to build from source is nettle, http tunneling and smalltalk.

Nettle Steps:

Step 1. wget http://ftp.lysator.liu.se/pub/security/lsh/nettle-2.1.tar.gz
Step 2. tar xvzf nettle-2.1.tar.gz
Step 3. cd nettle-2.1
Step 4. ./configure
Step 5. time make

real 0m14.072s
user 0m9.779s
sys 0m2.994s

Http Tunneling Steps:

Step 1. wget http://www.nocrew.org/software/httptunnel/httptunnel-3.0.5.tar.gz
Step 2. tar xvzf httptunnel-3.0.5.tar.gz
Step 3. cd httptunnel-3.0.5
Step 4. ./configure
Step 5. time make

real 0m1.127s
user 0m0.744s
sys 0m0.175s

Smalltalk Steps:

Step 1. wget http://ftp.gnu.org/gnu/smalltalk/smalltalk-3.2.4.tar.gz
Step 2. tar xvzf smalltalk-3.2.4.tar.gz
Step 3. cd smalltalk-3.2.4
Step 4. ./configure
Step 5. time make

    real 0m55.418s
    user 0m48.178s
    sys 0m5.627s

Leave a comment