![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Split large file and add header and footer to each file | ashish4422 | Shell Programming and Scripting | 1 | 04-15-2008 03:12 AM |
| how to divide single large log file into multiple files. | kamleshm | Shell Programming and Scripting | 1 | 01-15-2008 03:33 PM |
| Check backup file size on backup tape | ayhanne | UNIX for Dummies Questions & Answers | 0 | 10-25-2007 08:41 AM |
| Strange difference in file size when copying LARGE file.. | 0ktalmagik | Filesystems, Disks and Memory | 1 | 06-03-2006 04:34 PM |
| Backup Differnet Unix OS Using Single LTO | mickykt | UNIX for Dummies Questions & Answers | 2 | 11-07-2004 05:30 PM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Backup single large file
Hi
I have a single large file 11gb that I need to copy/backup to tape then restore on another system. I tried tar but that complained about the file being too large Anyone have any suggestions how I can do this with AIX 5.2 Much appreciated. |
| Forum Sponsor | ||
|
|
|
|||
|
This was helpful for me:
dumping data and compressing |
|
|||
|
In addition to what is in the mentioned thread you could also try the following:
tar -cvf - <yourfile> | gzip -9 <name_of_resultfile> Unpack it by: gzip -cd <name_of_resultfile> | tar -xvf - bakunin |
|||
| Google UNIX.COM |