# # perl tricks # http://www.linuxplanet.com/linuxplanet/tutorials/214/1/ # # # Daemon http://bob.rasey.net/archives/000148.html http://lists.debian.org/debian-security/2004/12/msg00107.html # # # # perl -MCPAN -e 'install DBI' perl -MCPAN -e 'install DBD::Pg' (or some other driver) For non-automatic making modules you can use this sequence of commands: tar xfvz Module.tar.gz ; cd Module perl Makefile.PL make make test make install cd .. ; rm -rf Module # # # # # End of file