手動安裝的
cd /usr/local/src
解壓縮這個檔案,這時會新建乙個net-server-0.97的目錄。
tar xvzf net-server-0.97.tar.gz
換到解壓後的目錄:
cd net-server-0.97
生成 makefile:
perl makefile.pl
生成模組:make
測試模組(這步可有可無):
make test
如果測試結果報告「all test ok」,您就可以放心地安裝編譯好的模組了。
執行make install
執行$>perl -m模組 -e1沒有輸出說明沒問題
問題:perl makefile.pl時can't connect: io::socket::inet: bad hostname 『**』
make test時某幾步 skipped: can't talk to ourself (misconfigured system)
解決方法:
vim /etc/hosts
127.0.0.1 localhost 後面加上hostname
即改為12
7.0.0.1 localhost ** (其他刪掉)
注意空格 ,儲存解決
perl安裝模組
1.cpan perl mcpan e shell o conf init 可以初始化cpan vi usr lib perl5 5.8.8 cpan config.pm 更改cpan配置主要是映象的配置 163映象 urllist q install net netmask 就自動安裝了 m 正則...
perl 簡單學習,安裝perl模組
檢查是否安裝了某個perl模組 有多種方式 0.perldoc perlinstall 列出所有的模組及版本號 1.perl m模組名 e 1 模組名不加空格 沒有返回值則說明有此模組 2.perl e use dbd oracle print dbd oracle version n window...
安裝perl模組 Linux
介紹一下各種平台下perl模組的安裝方法。以安裝dbi模組為例。linux unix下的安裝方法 a 手工安裝的步驟 生成makefile perl makefile.pl 建立模組 make 測試模組 make test 如果測試結果報告 all test ok 您就可以放心地安裝編譯好的模組了。...