How to UNZIP

algore

Verified User
Joined
Aug 9, 2007
Messages
13
How do i unzip a file ...

I have uploaded a a file in zip form ... now how do i unzip the folder ...

Can anyone help ....

The file is in zip format ...

How to convert a folder in tar.gz in windows
 
Last edited:
Are you trying to unzip a tar.gz file in Windows as well? You can do that using the winzip program.

Jeff
 
To install zip on RH machine:
yum -y install zip

To zip all files in present folder:
zip -r allfiles.zip .

To unzip files :
unzip filename.zip
 
Back
Top