Monthly Archives: June 2008

Linux: How To Setup A Basic SVN Repository And Server

Setting up Subversion Server on Fedora Become root and install subversion via yum # yum install -y subversion Create your svnroot directory # mkdir -p /home/svnroot # svnadmin create /home/svnroot Edit your svnserve.conf # vim /home/svnroot/conf/svnserve.conf Your basic svnserve.conf will … Continue reading

Posted in Linux | Leave a comment

How To Profile a Perl Script

Perl Profiling can be done by using the DProf debugging switch: # perl -d:DProf test.pl hello # ls test.plĀ  tmon.out # dprofpp tmon.out Total Elapsed Time = 0.009982 Seconds User+System Time = 0.009982 Seconds Exclusive Times %Time ExclSec CumulS #Calls … Continue reading

Leave a comment

libMagick.so.10: cannot open shared object file

Can’t load ‘…/auto/Image/Magick/Magick.so’ for module Image::Magick: libMagick.so.10: cannot open shared object file: No such file or directory at /usr/lib/perl5/5.8.8/i386-linux-thread-multi/DynaLoader.pm line 230. Add /usr/local/lib to /etc/ld.so.conf Run ldconfig as root.

Posted in Linux | Leave a comment