1、perl安裝:安全
一、下載並解壓軟件:tar zxvf perl-5.24.0.tar.gzide
二、運行./configure.gnu -help查看幫助,運行./configure.gnu -des -Dprefix=/usr/local/perl -Dusethreads -Uversiononly設置源碼spa
三、編譯及安裝 make&make installblog
四、備份舊perl,替換新perlip
mv /usr/bin/perl /usr/bin/perl.bakssl
ln -s /usr/local/perl/bin/perl /usr/bin/perl源碼
五、查看perl版本及位置openssl
which is perl;whereis perl;perl -vit
--------------------------------------------------------------------------------------------------------------------------------io
2、openssl 安裝:
一、下載並解壓軟件:tar zxvf openssl-1.1.0b.tar.gz
二、編譯並安裝
# ./config
# make&make install ----make以後,可用make test檢查編譯是否正確
三、備份舊openssl,替換新openssl
# mv /usr/bin/openssl /usr/bin/openssl_bak
# ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl
四、查看openssl版本及位置
which is openssl;whereis openssl;openssl version
--------------------------------------------------------------------------------------------------------------------------------
tips 1:
perl:通常,「Perl」是指語言自己,而「perl」指程序運行的解釋器
openssl:OpenSSL是一個開源項目,爲傳輸層安全(TLS)和安全套接字層(SSL)協議。它也是一個通用的密碼庫。
OpenSSL is an open source project that provides a toolkit for the Transport Layer Security (TLS) and Secure Sockets Layer (SSL) protocols.It is also a general-purpose cryptography library.
tips 2:
環境變量:優先搜尋前面目錄,使用前面目錄的軟件。
軟連接:ln -s