How to build Openssl from source
Recently we had to install openssl but for the 32-bit platform. This is how I did it.
wget http://www.openssl.org/source/openssl-0.9.8x.tar.gz tar zxvf openssl-0.9.8x.tar.gz setarch i386 ./config -m32 shared make clean; make install
In general though for anything that you need to build the following command will work:
./configure && make && sudo make install
You may also like
Denyhosts on CentOS
October 18, 2016
Ubuntu SNMP config for Zabbix and Checkpoint
February 4, 2016
Build bitcoind from source Fedora 22
October 30, 2015
Archives
Calendar
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| 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 | |||||
Leave a Reply