分类:
2007-03-01 12:03:58
使用mysqlhotcopy |
Can't locate DBD/mysql.pm
说明还需要和mysql相关的DBD包
安装DBD包 http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/DBD-mysql-2.9007.tar.gz freeBSD53# cp /cdrom/DBD-mysql-2.9007.tar.gz /tmp freeBSD53# cd /tmp freeBSD53# tar -zxvf DBD-mysql-2.9007.tar.gz freeBSD53# cd DBD-mysql-2.9007 但是在這之前,必須要有 mysql_config,這個是包在 mysql-devel 套件裡面
rpm -ivh MySQL-devel-4.1.14-0.i386.rpm
perl Makefile.PL --cflags=-I/usr/bin --mysql_config=/usr/bin/mysql_config --testdb=test --testuser=root --testpassword="********"
make
make install
如果出错:dbdimp.h:21:49: mysql.h: No such file or directory
将/usr/include/mysql/*内容拷贝到/usr/local/include下
再进行make;make install |