1.分別下載插件程序:
GeoIP:
GeoIP安裝下載:http://www.maxmind.com/download/geoip/api/c/
# tar -zxvf GeoIP-1.4.5.tar.gz
# cd GeoIP-1.4.5
# ./configure
<如果./configure出現錯誤>
configure: error: no acceptable C compiler found in $PATH
configure failed for srclib/apr
<解決辦法>
yum -y install gcc
<如果./configure出現錯誤>
configure: error: Zlib header (zlib.h) not found. Tor requires zlib to build. You may need to install a zlib development package.
<解決辦法>
yum -y install zlib-devel
# make
<如果make出現錯誤>
make: *** No targets specified and no makefile found. Stop.
<解決辦法>
請確定您已完成 configure 步驗,或是檢查 configure 步驗是否有任何錯誤訊息。
# make install