#### perl安装
wget http://www.cpan.org/src/5.0/perl-5.22.0.tar.gz
tar -zxf perl-5.22.0.tar.gz
cd perl-5.22.0
./configure.gnu -des -Dprefix=/usr/local/perl
echo $?
make
make test
make install
mv /usr/bin/perl /usr/bin/perl.bak
ln -s /usr/local/perl/bin/perl /usr/bin/perl
perl -v
#### 安装模块 root权限
perl -MCPAN -e shell
获得帮助
cpan>h
列出CPAN上所有模块的列表
cpan>m
安装模块: http://www.cpan.org/modules/01modules.index.html
install perl-Net::DNS
install Net::Nslookup
查看已经安装的perl模块
find `perl -e 'print "@INC"'` -name '*.pm' -print
或者yum安装 例如:
yum list perl-Net-SSLeay
yum install perl-Net-SS* -y
rpm -qa|grep Socket-SSL
rpm -ql perl-IO-Socket-SSL-1.31-2.el6.noarch
updatedb && locate IO/Socket/SSL.pm
github上搜索下 Mojo-Webqq
#################
##### cpan模式安装模块
perl -MCPAN -e shell
yum install perl-CPAN
#### 手动安装模块
从CPAN下载了DBI模块1.13版的压缩文件DBI-1.13.tar.gz,假设放在/usr/local/src/下。
cd /usr/local/src
解压缩这个文件:
tar xvzf DBI-1.13.tar.gz
这时会新建一个DBI-1.13的目录。
cd DBI-1.13
生成makefile:
perl Makefile.PL
make
make install