Tar Command: How to Tar/Un Tar [Zip/Unzip] a Folder From Linux Command?

Collapse

Unconfigured Ad Widget

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Shane
    Senior Member
    • Jun 2006
    • 264

    Tar Command: How to Tar/Un Tar [Zip/Unzip] a Folder From Linux Command?

    Hello All,

    In order to zip/unzip folder from command prompt one needs to execute tar command. Below mentioned is syntax and example for the same:

    Syntax:
    To Tar:
    tar -cvzf tarfilename foldername

    Untar:
    tar -xvzf tarfilename

    Example:
    tar -cvzf abc.tar.gz abc
    - This will zip [tar] the abc folder with the name abc.tar.gz

    tar -xvzf filename.tar.gz
    - This will unzip [untar] the file as abc folder.

    That's it!

    Thanks,

    Shane G.
    AccuWebHosting.Com
    Last edited by admin; 07-29-2015, 09:18 AM.
Working...
X