Compress in .tgz

I want to compress files in .tgz. I know how to make tar.gz(with tar and gzip) and some people say it is almost the same, but I need to make a .tgz, how??

0

2 Answers

A tar.gz file and a .tgz file are similar.

Compress files using tar:

tar -cvzf <name of tarball>.tgz /path/to/source/folder

for example, I want to create a backup.tgz or backup.tar.gz from folder /home/user/project

tar -cvzf backup.tgz /home/user/project
tar -cvzf backup.tar.gz /home/user/project

You can use tar cvzf instead of tar -cvzf as well.

Extract .tgz or .tar.gz files using tar

tar -xvzf backup.tgz
tar -xvzf backup.tar.gz

Mnemonic for compression (the order of the flags do not matter)

  • C ompress
  • Z ee
  • F ile
  • V erbose

Mnemonic for extraction (the order of the flags do not matter)

  • e X tract
  • Z ee
  • F ile
  • V erbose
5

It's the same. Just rename the file from file.tar.gz to file.tgz.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like