vote up -2 vote down star

What is the command in unix to do tar on a specific folder.

flag
3  
Couldn't you have just Googled it? – Elitecoder Jun 23 at 2:08
1  
or do a man tar and then navigate in the manual... – LB Jun 23 at 2:15

closed as not programming related by ephemient, Alex Martelli, Adam Rosenfield, Greg Hewgill, gnovice Jun 23 at 2:32

5 Answers

vote up 0 vote down

$ tar -czvf tarfile.tar.gz /path/to/folder

Or, if you think you need just a little more compression:

$ tar -cjvf tarfile.tar.bzip2 /path/to/folder

People frequently forget the bzip2 option, and it does usually compress better than gnuzip.

link|flag
vote up 0 vote down

Something like this should do the trick:

tar cf tarfile folder

This will create a tar image of "folder" and put it in the file "tarfile"

The "cf" are the options to tar.

"c" means that you want to create a new tar image

"f" means that the next word will be the name of the file for the tar image.

I didn't use it in my example, but some people like to use the "v" option also. This will make tar list every file as it archives it. It's a way to track its progress.

One minor gotcha to be aware of is that if you use a path for the folder name, such as:

tar cf tarfile path/to/my/folder

then when you untar the image all of the files will recreate (or use) the same path for the new files. (i.e., path/to/my/folder) in this example. In some cases this is good. In others it creates a bunch of intermediate directories that you may not care about.

link|flag
vote up 1 vote down

An example of exactly what you're looking for is at the top of the man page. If you're new to unix remember that you should give the man page a look as they will often have nice examples.

You can also find these man pages on the internet usually by googling the operation. But be wary what man you search for!

man tar

link|flag
vote up 3 vote down
$ tar cf tarfile.tar /path/to/folder
link|flag
vote up 0 vote down
tar cvf output_file.tar /path/to/folder

you can tar-zip it too

tar cvfz output_file.tgz /path/to/folder

c - create

v - verbose (not necessary, but it tells you which files are included into the archive)

f - output to file

z - zip the output

replace c for x and remove path - that will do reverse.

Man page explains it all :)

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.