Friday, July 1, 2016

Archive: tar / tar.gz / bz2




How to create .tar.gz
  • tar -cvf file.tar /full/path - creates tar
  • tar -czvf file.tar.gz /full/path - creates .tar.gz (архив)
  • tar -cjvf file.tar.bz2 /full/path - creates .tar.bz2 (архив)
How to extract (dearchive) .tar
  • for extract tar.gz file: tar -xvf file.tar.gz

No comments:

Post a Comment