![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Advanced UNIX and Linux questions go here. Expert-to-Expert. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Check backup file size on backup tape | ayhanne | UNIX for Dummies Questions & Answers | 0 | 10-25-2007 08:41 AM |
| [Help help] backup script for tape on solaris | bucci | Shell Programming and Scripting | 0 | 03-14-2007 03:03 AM |
| Solaris 7 newbie tape backup question | jolok | SUN Solaris | 5 | 01-13-2007 10:50 AM |
| linux backup to solaris tape drive | bubba112557 | Linux | 0 | 02-08-2006 08:23 PM |
| Tape Backup Problem? | cstovall | UNIX for Dummies Questions & Answers | 1 | 05-20-2003 05:48 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Problem With Tape Backup in Solaris
Hi,
OS: Solaris9, SPARC. Commands (and their outputs) that I use to backup two files of size 4GB and 10GB (respectively) are shown below: # cd /backup/daily/ # mt -f /dev/rmt/0m rew # tar -cvf /dev/rmt/0m * a Mails.bkf 4680454 tape blocks a backup.bkf too large to archive # The Tape is: HP DDS-4 data cartridge C5718A (40GB) Why is this happening? If this is because the tape is full, then how do I start from the beginning (instead of appending data). Regards, M... |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Quote:
Second - check out this thread on compression. Third, take a look at the E option for tar - part of it is for supporting file sizes greater than 8GB. Last edited by RTM; 03-29-2006 at 07:22 AM. |
|
#3
|
||||
|
||||
|
But see Error tar'ing files to tape. A tar archive, created with Sun's tar program is limited to 8,589,934,591 bytes. More tapes won't help. Try another program.
|
|
#4
|
|||
|
|||
|
The problem should be the size. What other inbuilt tools are there for tape backup, Perderabo?
And from RTM's suggestion: 'E' option seems to solve it... Command now gets modified to tar -cvfE /dev/rmt/0m * # tar -cvfE /dev/rmt/0m * a Mails.bkf 4680454 tape blocks a backup.bkf 18116128 tape blocks # Thanks both-of-u. |
|||
| Google The UNIX and Linux Forums |