Sucessful Test of IPSec for ICMP on XP With TL Nikunj

May 31, 2008

First Experience with WordPress

May 31, 2008

I had decided to write my own blog in my own style. So, yesterday I created my blog and fixed that tomorrow I would learn how to do it.

So today When I came to office, after finishing reporting I started to search how to start blogging using wordpress. I thought, I would not be able to do it by my maximum efforts but I didn’t want to stop it and after all started it.

Let’s see how much I can continue on this.


Protected: Patch Implemented on Servers

May 31, 2008

This post is password protected. To view it please enter your password below:



Create .zip file in Linux

May 31, 2008

Today afternoon Kailash needed help in creating .zip file in Linux. How can I guide him even when I don’t know how to do that.

I told him to use tar to create compressed file in Linux it gives better compression ration.

But then I started search and found out that zip command is used to create .zip file in Linux.

Syntax:

zip <zip file name> <target file or directory to be compressed>

Ex: zip test.zip *

This will create test.zip file of all files in current directory.

Same way unzip is used to unpack the compressed one.

Ex: unzip test.zip

So enjoy this stuff.