The upgrade to Kamat.com is turning me from a Amateur Webmaster into a profession webmaster. So many things to do, so many things to learn...
The new server has a gigabyte of main memory, and is superfast. I am very excited about it, although it costs a fortune...
I've opted for the Ensim Webappliance, and so far the experience has been pretty good. I am yet to get a hang of thier virtual server technology (and how to cheat it), but I like the power and flexibility of the Linux engine underneath.
I have recompiled the full text search engine, and tested some key softwares (mail, ftp, php etc.) By this weekend, I plan to switch over.
![]()
How to zip and unzip files on Linux
To zip-up a folder:
% tar cf - /Folder | compress >ZipFile
To unzip an archive:
% uncompress < ZipFile | tar xf -
