It is very easy to compress a Whole Linux/UNIX directory. It is useful to backup files, email all files, or even to send software you have created to friends. Technically, it is called as a compressed archive. GNU tar command is best for this work. It can be use on remote Linux or UNIX server. It does two things for you:
=> Create the archive
=> Compress the archive
You need to use the tar command as follows (syntax of tar command):
tar -zcvf archive-name.tar.gz directory-name
Where,
- -z : Compress archive using gzip program
- -c: Create archive
- -v: Verbose i.e display progress while creating archive
- -f: Archive File name
For example, say you have a directory called /home/jerry/prog and you would like to compress this directory then you can type tar command as follows:
$ tar -zcvf prog-1-jan-2005.tar.gz /home/jerry/prog
Above command will create an archive file called prog-1-jan-2005.tar.gz in current directory. If you wish to restore your archive then you need to use the following command (it will extract all files in current directory):
$ tar -zxvf prog-1-jan-2005.tar.gz
Where,
- -x: Extract files
If you wish to extract files in particular directory, for example in /tmp then you need to use the following command:
$ tar -zxvf prog-1-jan-2005.tar.gz -C /tmp
$ cd /tmp
$ ls -
A note about non gnu/tar command
The above syntax use GNU tar command for compressing and uncompressing tar files. If your system does not use GNU tar, you can still create a compressed tar file, via the following syntax:
tar -cvf - file1 file2 dir3 | gzip > archive.tar.gz



70 comment
Excellent !
Step by step tutorial, easy to understand.
Thanks
Alpesh
Very excellent!
That is best guideline
Thank you!!!
yeah, it worked alright. :p it tarballed the directory and every file inside the directory into separate files
problem is, there are about 1k+ files
how do i have them all unzipped?
try: gunzip -rv /directoryname
how about archive a folder?
use tar -zxvf file to untar them:
tar -xvvf file.tar
so verbose…
much compression wow
mom’s spaghetti
Can we compress and uncompress a file even without having the write permission to the source file or the zipped by merely having the execute permission.
The system I am running this command does not support tar -z. Hence I tried to do a tar followed by a gzip. Then there was a lack of space error. Is there a way to do this for me?
This is cool but I need to compress directory which has many folders and files within each other. Without knowing each folder name, can I zip the directory using your example?
To zip the files try:
zip prog.zip /home/jerry/prog/*
Mark,
The -r option recurse into directories,
just what I needed!! thanks for putting this up..
Superb..!
easy to understand..
thanks for your guideline.
how to list the file under the tar.gz?
I have try tar -tf
but fail and come out a message “This does not look like a tar archive”
THANKS! :)
Hey Man its really gr8
Thanks for the help
This is an excellent tutorial! Simple and easy to understand. Cool!
Very usefull been a long time since I done this had to refresh and this was perfect thanks
thanks..
Thanks, its really very helpful!
Thank you very much.
Truly very helpful.
Thanks for compress in linux tutorial.
Hiii
Thanks for ur excellent help it did a lot for meeeeeeeeeeeeeee
very good
can u give how to compress detail directory
HI Excellent Tutorial .
i Have one question, Is it possible to gzip all the files in a directory and remove all the files once we gziped is finished.
Hope u got my point ?
Wowwwww really simple and efficient !!!!!!!!!!!!! Thanks for the useful thing
thanks
Thanks, easy to understand and excellent guide.
Thanks, this is good, but usaully when i compress an archive i want also crypt it using a password. Could you help me to do it??????????????? :-)
Excellent tutorial !!!
Hi, I have to compress multiple dir within a dir and i used tar -czf option.. it created tgz file, but it doesnt remove the original directories.. Is there any way or option in zip/compress/archive to remove the original files after compression.. thanks
Nice article
Thanks
THANK YOU, this saved my first Minecrafts world. I was playing around with compiz and trying to make my windows slightly transparent like you see people have in videos. But forgot to turn the setting down from 100% or 0% or whatever before setting the window type to “any”. so then every single window dissappeared and I couldn’t see even an outline or shadow. AHHHGGGG!!!!! Luckily the only thing I actually cared about on that system was the minecraft world I’d been playing on. So I was able to open a terminal, type these commands in blind, then do a move command to get the new “saves.tar.gz” into my dropbox folder.
This post just turned a annoyed and ticked off night, into a “Hallelujah, THANK YOU GOD” kind of night lol
Thanks to Vivek Gite also though, and to all the other Linux/Unix/PC in general Pro’s out there that put these tid-bits of info on the net. They save absent minded people like me all the time!!! :-P
God Bless ya’s,
Daniel
Thanks for helping out – very straightforward.
Well done.
Mike
Nice clear and concise tutorial !! Well done
Regards,
Matthew
Thanks a ton :)
@Matthew Cupples:
try: gunzip -rv /directoryname
Thanks, man!
Very useful
Thank you
nice tutorials. I have been referring to this website for all my linux questions and got answers for most of them.
GReat !!. now becomes expert in ssh commands
Great tutorial cyberciti!
Thanks for the lesson. I tried to use gzip last night to backup our site files. Entire site gave 404’s because all the files were renamed to .gz. Linux rookie mistake.
sometimes you might have very big files (with pictures, for instance) that you dont want to be in the archived file, in that case you can use EXCLUDE command to do exactly the same backup, without a big folder, and it will go like this:
$ tar -zcvf prog-1-jan-2005.tar.gz –exclude ‘/home/jerry/prog/big-file/*’ /home/jerry/prog
in that way the gzip will create an archive without the big-file and all its content.
I have 3 GB directory under /opt file system and I want to compress this directory using gzip but my file system /opt having 500 MB space only. I want to compress this directory and compress directory data moved to another filesystem without effecting of my 3 GB directory because some applications running on this directory. Can anyone tell me the syntax.
Can I just say that sometimes you have to check and see that you’re not trying to tar a symlink!!!
A time consuming error… :/
I agree with you marsh I just wasted an hour of my life doing that
Thanks for the help!
Its really awesome command…… Thanx a lot…
Hello,
Excellent Tutorial.
Someone can give me the a tip how to compress a bunch of specific folders and/or files from a txt file:
For instance I have created a txt file with all the files name and/or folder name that I need to compress, any suggestion?.
Thanks in advance,
Habib
omg —
Instead of asking questions here where nobody will reply, simply try it
“can i do this on directories?”
fakn try it!
This is the best tutorial I have found does far for a new bigginer
Excellent, Thanks
thanks, i’ve been looking this tut to compress my directory
10X
Great tips, Thanks.
I can’t tell how many times I had to come back here and look at the command lawl…
It can be updated to use xz just using the -J flag
these commands worked great. but how do I recover a non recoverable tar.gz file. is that possible?
Thanks. Good explanation.
How to create tar archive of mtd block and send it via TFTP to remote server? (without intermediate saving archive first on local system)
Thank you very much, it helped a lot
Bad English, sorry. I am glad that I don’t work with Linux or UNIX. The horror. It even looks like SAW.
How do I find a file?
find . -name filena* -print
ok? And what if I make a mistake, then I have to type that whole again over again until I decide to use bash. I don’t want to bash but I do it.
Same goes for OpenSolaris or Solaris where you have to make the index of the man pages. Why?!? Because I get an error catman: windex not found or something when I don’t execute that stupid command.
catman -w
Thank you very much. Nice tutorial.
Compress a Whole Linux or UNIX Directory using SSH : tar -zcvf archive-name.tar.gz /
To automatically delete the original directory, as soon as the new archive is ready; append your code with:
.
Or play it safe; with:
.
I’m using non GNU.. and in your explanation, May I knw what is file1,file2 and dir3 in your command for non-GNU?? Please
very helpful.