Problem With Tape Backup in Solaris


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Problem With Tape Backup in Solaris
# 1  
Old 03-29-2006
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...
# 2  
Old 03-29-2006
Quote:
# mt -f /dev/rmt/0m rew
# tar -cvf /dev/rmt/0m *
First off, you ARE starting from the begining of the tape by using the command mt -f /dev/rmt/0m rew. Check out the man page for mt. Since you probably use this command every day, you would not be appending to the tape at all (if the tar command had worked).

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 10:22 AM..
# 3  
Old 03-29-2006
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  
Old 03-30-2006
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.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

question about restoration from backup tape (solaris 10)

I am trying to restore opt on my server. my issue is, all the partitions are saved into the same back up tape. what is the exact command to just restore /opt for example, supposing c0t0d0s7 is the partition for /opt ---------- Post updated at 01:16 PM ---------- Previous update was at... (7 Replies)
Discussion started by: feg
7 Replies

2. Solaris

Backup files to tape drive on solaris

Hi, I want to take backup of files older than 20 days from a directory onto a tape drive on remote machine on Solaris. The files are of format abc-20100301000000.gz on my local machine. I know the below commands for searching files older than x days and command for backup procedure. solar1 #... (7 Replies)
Discussion started by: jyothi_wipro
7 Replies

3. AIX

Backup on Tape

Hi, I am very new to AIX, i have a development and a production server with AIX 6.1. I am using following command to backup my system /usr/bin/mksysb '-m' '-V' '-i' /dev/rmt0 You can what i have in my root volume group in the atached file and and you can also see the backup information of... (14 Replies)
Discussion started by: salmanucit
14 Replies

4. SCO

Backup to SCSI Tape Backup aborts

I am trying to make a full backup of my system using the cpio command. The Tape Unit is a SCSI DDS. The process started fine but after about 30 minutes, it just stopped and showed the following message: 1755 Signal 31 - Core dumped Any idea of what is causing this and how to fix it? ... (4 Replies)
Discussion started by: zionpc
4 Replies

5. UNIX for Dummies Questions & Answers

Check backup file size on backup tape

Hi, I performed backup on tape and I want to append more files to my previous backup on the same backup tape. But before I do that I need to know the backup file size of the first backup I performed so that I know the available size on the backup tape. Can someone help me what command I will use... (0 Replies)
Discussion started by: ayhanne
0 Replies

6. UNIX for Dummies Questions & Answers

Mounting DLT tape and to backup file to tape

Hi there: I'm new here Can anyone help me: I have DS15 Alpha server : Unix 5.1B Now i need to connect a DLVT VS80 1U Rackmount Tape Drive unit. What is the exact comman to mount the DLTape IV?? How do i make backuo @ copy file to the tape? Thanx to all (0 Replies)
Discussion started by: ayzeayem
0 Replies

7. Shell Programming and Scripting

[Help help] backup script for tape on solaris

hi all, very urgent need backup script on tape using solaris 8, my tape drive is DAT 72 on sun v240. i need a simple script to backup files from directory /data/log/back/200703/filename.log. the files will backup continue each day on the tape which have 72 GB. the files size only 50MB and... (0 Replies)
Discussion started by: bucci
0 Replies

8. Solaris

Solaris 7 newbie tape backup question

Hello all, I have an ss20 running Solaris 7, with an attached 4mm tape drive. The machine has one 1.2GB SCSI HDD. I would like to backup other machines to tape, but I can't do a stopover on the ss20s hard disk, as there is virtually no space available. Is there a way I can make the tape... (5 Replies)
Discussion started by: jolok
5 Replies

9. Linux

linux backup to solaris tape drive

All, Has anybody ever got a Linux server to backup to a remote Solaris tape drive using the dump command and rsh? I can remtoely backup two Solaris server this way. Any help would be appreciated. Thanks, Mike (0 Replies)
Discussion started by: bubba112557
0 Replies

10. UNIX for Dummies Questions & Answers

Tape Backup Problem?

Hi. Can someone please tell what the following tape error message means: Read end of medium on output If you want to go on, type device/file name when ready This message comes after the terminal displays a few files from the directory I'm trying to backup. The command I'm running is: ... (1 Reply)
Discussion started by: cstovall
1 Replies
Login or Register to Ask a Question