Linux

Rename files in a folder to lower-case using perl

This is a simple oneliner to rename files to lower-case using perl # perl -e ‘rename($_, lc) || warn “$_: $!\n” for @ARGV’ * You can also do this recusively using find and perl # find . -type f -exec perl -e ‘rename($_, lc) || warn “$_: $!\n” for @ARGV’ {} \;

Read More
Linux

mysql on a nondefault socket

It is sometimes necessary to run two instances of mysql, like in my case. I need a mysql database in addition to the one Zimbra uses. One solution to this problem is to run the mysql database on a non default socket. This can be done by changing the following line in my.cnf my.cnf [client] […]

Read More
Linux

Installing a new language in Zimbra 5.x

This is a short post describing how I’ve installed a new language pack to a Zimbra (ZCS) 5.0.10 installation to enable norsk/norwegian language. Download your desired language pack, in my case it was a Norwegian translation from the I18N/L10N – Translations Zimbra forum. Unpack the translation files Copy the translated files to your Zimbra server […]

Read More
Linux

Redhat documentation in one place

http://www.redhat.com/docs/manuals/enterprise/ is a documentation page I always return to when I manage Redhat Enterprise Linux systems. Redhat has put a lot of effort in their documentation and even allow you to download them as PDF documents. The documentation below is for RHEL5.2 Deployment Guide May 21, 2008 PDF Installation Guide May 21, 2008 PDF Virtualization […]

Read More