Installing OpenSSL 1.0.0g

Moderator: cah

Post Reply
cah
General of the Army / Fleet Admiral / General of the Air Force
General of the Army / Fleet Admiral / General of the Air Force
Posts: 1342
Joined: Sun Aug 17, 2008 5:05 am

Installing OpenSSL 1.0.0g

Post by cah »

1. Download source code:

Code: Select all

wget http://www.openssl.org/source/openssl-1.0.0g.tar.gz
2. Uncompress and untar

Code: Select all

gzcat openssl-1.0.0g.tar.gz | tar xf -
cd openssl-1.0.0g
3. Configure

Code: Select all

config
4. Compile

Code: Select all

make
5. Test

Code: Select all

make test
6. Install by "root"

Code: Select all

make install
Code is installed in "/usr/local/ssl".
CAH, The Great
cah
General of the Army / Fleet Admiral / General of the Air Force
General of the Army / Fleet Admiral / General of the Air Force
Posts: 1342
Joined: Sun Aug 17, 2008 5:05 am

Installing OpenSSL 1.0.2g

Post by cah »

1. Download source code:

Code: Select all

wget http://www.openssl.org/source/openssl-1.0.2g.tar.gz
2. Uncompress and untar

Code: Select all

gzcat openssl-1.0.2g.tar.gz | tar xf -
cd openssl-1.0.2g
3. Configure

Code: Select all

config
4. Compile

Code: Select all

make depend
make
5. Test

Code: Select all

make test
6. Install by "root"

Code: Select all

make install
Code is installed in "/usr/local/ssl".
CAH, The Great
Post Reply