I have a few files. i want to tar these files and zip it using gzip it.
As you can see i can tar all the files. But when i gave the gzip command, i am getting an error in it. The following is the command and its error.
Is there any limit on size of the file.. If so, Please advise me on how to take it forward. I just want to archive these files in as much less memory i can.
The - in tar means (with the c option) write to standard output (or read from standard input with the x option).
The -9 means maximum compression (9) (you can use -c also, which means read from standard input with gzip, and write to standard output with gunzip, but it seems most gzips are happy without it)
It's all explained in the man pages.
----
Sorry I didn't explain it very well (or at all!).
Will tar up the files or directories you specify and write the tarfile to standard output.
will pipe the output (the tar file) into gzip and compress it (using maximum compression, -9) and write this to standard output (as it doesn't have either an input or output filename to work with)
will direct standard output (your compressed tar archive) to myfile.tar.gz.
You can do the reverse also:
This is quicker and saves diskspace in the short term. You can do similar things with pipes, such as when exporting large database schemas directly to compressed files, etc, if you don't have enough space for the .dmp file.
In fact, you can set up just about anything to write directly to a compressed file.
i.e.
The background process "cat .... &" will end when your program or script does
Hi,
I need to combined in 1 line the execution below :
find * -type f -mtime -$nb_days -print | xargs tar -cvf $MAITUT/BCK_DATA.tar
gzip $MAITUT/BCK_DATA.tar.gz
The fact that the TAR is very big, at the end I need to generate only the GZ file.
The option z on the tar... (2 Replies)
Hello
I am trying to select multiple files older than 14 days and create a single compressed file out of it. (AIX Release 3 Version 5)
I am trying to achieve it by following
tar -cvf db01_log.tar `find . -name "db01*.log" -mtime +14" -print`| gzip > db01_log.tar
however it just... (7 Replies)
Hi Guys,
I am using RHEL5 and Solaris 9 & 10.
I want to tar and gzip my files then remove them after a successful tar command...
Lets say I have files with extension .arc then I want to tar and gzip these files.
After successful tar command I want to remove all these files (i.e .arc).
... (3 Replies)
Hi All
I need guidance on this requirement .
We have a directory structure which has data of approx 100 GB
We need to tar the structure then zip it and create different files of not more than 10 GB
A separate tar file then a .gz should not be created , on the fly a script is needed... (7 Replies)
i'd like to have an alias (or something similar) where i can type a command like "archive" and a filename and have it tar and gzip the file, so...
$ archive filename
results in filename.tar.gz...do i have to write a script to do this? (4 Replies)
Hi,
I would like to have a combined gzip and tar that will compress and create multiple output tar.gz files. I want to have multiple files output because i cannot create an archive because there is no more space on my harddisk. I cannot transfer it locally because of slow connection. I want to... (3 Replies)
P0251WLADC.svm_wl1 > /svm_wl1/billing/data/server/archive/ALLEVT
$ du -k FEB2006
22050224 FEB2006
As you can see,i have a folder called "FEB2006" which is around 22 GB.
i guess zip or compress wont work...( i don know how do we compress a folder)
i wished to use ""tar" ( i suppose... (5 Replies)
Hi,
There are 700 .pdf files in a certain directory on the server and I need to TAR them first and then compress them using GZIP to free up the space. The combined size of the .pdf files is 3gb. However, there is only 1gb of free space on the server. So as you can see when I try to TAR these... (3 Replies)