AIX 4.2: tar using compression ?


 
Thread Tools Search this Thread
Operating Systems AIX AIX 4.2: tar using compression ?
# 1  
Old 02-03-2009
AIX 4.2: tar using compression ?

Hi, is there a way to use compression on the TAR command running on a AIX 4.2 ?

I did a "man tar" but did not see mentions of using compression, nor how to even find out the tar version.

I want to look into ways of reducing the amount of time to do backups. One backup is dumping database backups on tapes using TAR but just one single TAR can take up to 4 hours to do. The other means of backups we have are mksysb.
# 2  
Old 02-03-2009
tar on AIX does not have a compression switch. tar it first, then try running compress or whatever is available. Suffix for tar+compress should look like "filename.tar.Z".
# 3  
Old 02-03-2009
We tar directly to tapes.

Some of our backups don't have enough space to have twice the amount of space as 2 backups. I found that out when I tried to copy the backup folder to something else as I wanted to test the efficiency of the compress command on that copied backup folder.

Is it all tar versions on AIX that don't have the compression option ?

Since tar is an independant program, I thought at worst we could somehow get the latest version to run on our AIX 4.2
# 4  
Old 02-03-2009
The latest tar I have access to is on AIX 5.3 and it has no -z. Also it is possible to just install Gnu tar from the Linux toolbox since AIX 4.3.3. No idea if this exists for 4.2.

Also you can tar it 1st, compress it and then write it with tar again to tape. Maybe there also some methods with cpio etc.

Last edited by zaxxon; 02-03-2009 at 09:16 AM.. Reason: sorted out the order
# 5  
Old 02-03-2009
try sth like:
# tar -cvf - $(yourfilelist) | gzip > file.tar.gz

... unix commands are small compared to windoze... but you can combine them into powerful tools Smilie
# 6  
Old 02-03-2009
Then I guess for the moment, I will have to investigate how to get enough free space somewhere to compress the backup files on disk and then dump them to tape with TAR.

Thx for the answers.
# 7  
Old 02-04-2009
I did a test.

I went into one of the backup folders I did last sunday. I picked one backup file and did a 'compress' on it :

Before : filesize = 1,943,830,528
After : filesize = 267,629,228

Compression ratio of 'compress' command = 86.23%
Time of 'compress' command completion = 25min

Since this particular server has about 7 files totalizing roughly 10.5Gb, it would take 02:12 to compress them all.

So if this particular server backup takes about 4 hours to backup everything non-compressed, it would take 2hrs (compression time) + 2hrs (50% normal backup time) = 4 hrs.

Hummm, I am not really saving anytime here. I do admit that using 50% of backup time when the compression ratio of one file was 86% is a bit exaggerating. I just used it as worst case scenario.

I know on one other servers where we don't do DB backups, we are using PKZIP v2.51 . I have no idea on how fast it would be using it compared to the 'compress' command and, I do not know if the license would allow it to use it on other servers.

Any comments ?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Tar gzip compression rate

How good is the compression rate of gzip when you use tar with the gzip option? I am pretty amazed that a 1 GB file was reduced to 1019K. This is what I did. tar -cvf tar_test.tar.gz -T /list_of_files ls -hl -rw-r-----. 1 owner group 19 Jul 23 16:00 list_of_files -rw-r-----. 1 owner group... (7 Replies)
Discussion started by: cokedude
7 Replies

2. AIX

GNU TAR vs NATIVE AIX TAR

Hello, Getting this very strange error, made tar/zip through gnu tar GNU Tar ( successful tar and zip without any errors ) /opt/freeware/bin/tar cvf - /oraapp| gzip > /backup/bkp_15_6_16_oraapp.tgz GNU unTar error root@test8:/>gunzip < /config1/bkp_15_6_16_oraapp.tgz |... (5 Replies)
Discussion started by: filosophizer
5 Replies

3. AIX

Comparing two tar files on AIX

Hello, I have a directory which suddenly got filled up 100% from 70% ; (this is an oracle directory which has application and database in it ORACLE EBS) I do make cold backups, last month when I made cold backup of the directory /oratec the tar zip file was 31GB and this month when i made the... (5 Replies)
Discussion started by: filosophizer
5 Replies

4. UNIX for Dummies Questions & Answers

How to tar a directory in AIX?

Hi i want to tar a directory.. i have tried few command but it is not working . please let me know how to tar and untar a directory below are the error which i am getting tar -zxvf tl11cp01_042414_071123.tar.gz tar: Not a recognized flag: z tar -zxvf... (3 Replies)
Discussion started by: scriptor
3 Replies

5. AIX

How to install .tar.tgz file in AIX 6.1?

Hello, I have openssl.0.9.8.1103.tar.tgz file which I have downloaded from https://www14.software.ibm.com/webapp/iwm/web/reg/download.do?source=aixbp&S_PKG=openssl siteThe website says that the file name is openssl.0.9.8.1103.tar.z but when downloaded I get openssl.0.9.8.1103.tar.tgz as the... (2 Replies)
Discussion started by: gaugeta
2 Replies

6. AIX

Tar extraction error in aix 5.3

Hi root@appdr01 #ls -latr total 2887400 drwxr-xr-x 2 root system 256 May 06 11:34 lost+found drwxr-xr-x 34 root system 4096 May 06 11:34 .. drwxr-xr-x 3 root system 256 May 06 12:20 . -rw-r----- 1 root system 1478338560 May 06... (1 Reply)
Discussion started by: samsungsamsung
1 Replies

7. AIX

GNU Tar with compression for AIX 4.2 already compiled ?

Is there a GNU Tar available with compression option available for AIX 4.2 that I can directly use (not having to compile anything, simple installation) ? (1 Reply)
Discussion started by: Browser_ice
1 Replies

8. AIX

How to tar a files that bigger than 2 gig in AIX 5.2?

Hi, I have a question. Im trying to tar a files that the size is bigger that 2 gig. When i tried to tar it, i got an error says "eached end-of-file before expected" How can i solve this? Thanks and Regards (6 Replies)
Discussion started by: owangecounty
6 Replies

9. AIX

Return Code of tar in AIX

I am making some shell commands using tar command under AIX. Could somebody tell me the meaning of those return code of tar command? like 1, 2, 3... I have been searching all the time and got only this: 0 success >0 error Does somebody know the meaning of those number greater than 0 in... (3 Replies)
Discussion started by: dupeng
3 Replies

10. UNIX for Dummies Questions & Answers

tar compression - please help

I'm backing up one of my sites, and will be moving to another host. This was an expermintal site, and many of the directories won't be needed. What tar command is needed to exclude directories from the compressed file? Could you also give an example. also this might be the same comand, but -... (4 Replies)
Discussion started by: Taylor
4 Replies
Login or Register to Ask a Question