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??
Asked
Active
Viewed 3.9e+01k times
2 Answers
119
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
Seth
- 59,442
- 44
- 149
- 201
wisemonkey
- 3,523
14
It's the same. Just rename the file from file.tar.gz to file.tgz.
arrange
- 15,249
-
8You've forgotten the command for renaming a file:
mv file.tar.gz file.tgz. Obvious, but worth mentioning – Lekensteyn Nov 29 '11 at 23:08
cis better remembered as create, andzis remembered as compression, as in thezfrom zlib, gzip, zip. A better mnemonic would be C reate Z ipped F ile. – spencer7593 Oct 31 '17 at 20:18.tar.gzfile and a.tgzexactly the same? – Immanuel Weihnachten Apr 22 '20 at 09:42.tar.gzand a.tgzconsidered the same. – Neurotransmitter Jun 08 '20 at 12:32