Category Archives: Errors

Perltidy: Bareword “gensym” not allowed while “strict subs” in use at /usr/lib/perl/5.10/IO/Handle.pm

You are overwriting Symbol.pm somewhere in your $PERLLIB path. Remove Symbol.pm and perltidy should work just fine.

Posted in Errors | Leave a comment

Linux: df: /nfs/user: Stale NFS file handle

# umount /nfs/user

Posted in Errors, Linux | Leave a comment

Subversion: svn: Can’t open file ‘txn-current-lock’: Permission denied

To solve this problem, run svnserve as root (or as the user who has permissions to your svn root dir): # sudo bash # svnserve -d –foreground -r /home/svn OR # chown -R subversion: /home/svn # su – subversion # … Continue reading

Posted in Errors, Linux | Leave a comment

subversion: Missing Dependency: libneon.so.25 is needed by package subversion-1.6.12-0.1.el5.rf.i386 (rpmforge)

If you ever run into this problem: # yum install -y subversion Loaded plugins: fastestmirror … –> Finished Dependency Resolution subversion-1.6.12-0.1.el5.rf.i386 from rpmforge has depsolving problems –> Missing Dependency: libneon.so.25 is needed by package subversion-1.6.12-0.1.el5.rf.i386 (rpmforge) subversion-1.6.12-0.1.el5.rf.i386 from rpmforge has … Continue reading

Posted in Errors, Linux | Leave a comment

daemontools: /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference in envdir.o

Solution for fixing compilation error for daemontools. This solution also fixes: /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference in tcpserver.o when compiling ucspi-tcp. Edit this file: admin/daemontools-0.76/src/conf-cc Add this to the end of the gcc line: … Continue reading

Posted in DNS, Errors, Linux | 4 Comments

No recognized SSL/TLS toolkit detected

While running Apache configure, if you get this error: No recognized SSL/TLS toolkit detected …do this: yum install -y openssl-devel # Required for Apache configure

Posted in Errors | 1 Comment