下载perl5.6.1.tar.gz for UNIX的安装包
放入 UNIX 的某个文件夹中
#gunzip perl5.6.1.tar.gz
#tar xvf perl5.6.1.tar
#rm -f config.sh Policy.sh
#sh Configure -de
#make
#make test
#make install
安装完成
看一下perl -version
perl -v
This is perl, v5.6.1 built for i386-svr5
Copyright 1987-2001, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using `man perl' or `perldoc perl'. If you have access to the
Internet, point your browser at http://www.perl.com/, the Perl Home Page.
接下来 安装 DBI
下载dbi-1.13.tar.gz
gunzip dbi-1.13.tar.gz
tar -xvf dbi-1.13.tar
perl Makefile.PL#perl的时候在自己配置的目录下运行
make
make test
make install
再安装DBD-Oracle
perl Makefile.PL #perl的时候在自己配置的目录下运行 注意$ORACLE_HOME
make
make test
make install