1、安裝前準備
1)GCC編譯器
執行以下指令:
rrrrre 時如出現然後使用gcc -v 查看是否安裝成功。
2)PCRE庫
在線安裝時失敗,然後使用了離線安裝。如下:
sudo apt-get update sudo apt-get install gcc-4.8 sudo apt-get install g++-4.8 sudo apt-get install gcc-4.8-multilib sudo apt-get install g++-4.8-multilib sudo apt-get install gcc-4.8-doc sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 20 sudo update-alternatives --config gcc sudo update-alternatives --config g++
線上安裝如下:
sudo wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.36.tar.gz sudo tar -xzvf pcre-8.36.tar.gz cd /usr/local/src/pcre-8.36 (解压目录) sudo ./configure sudo make sudo make install
下載網址:http://zlib.net
sudo apt-get install zlib1g-dev
線上安裝如下:
cd /usr/local/src tar -zxvf zlib-1.2.8.tar.gz cd zlib-1.2.8 sudo ./configure sudo make sudo make install
下載網址:http://www.openssl.org/source
sudo apt-get install openssl sudo apt-get install libssl-dev
cd /usr/local/src tar -zxvf openssl-1.0.1e.tar.gz