appending a ufsdump tape


 
Thread Tools Search this Thread
Operating Systems Solaris appending a ufsdump tape
# 1  
Old 03-31-2005
appending a ufsdump tape

I have a level 3 (weekly) ufsdump on a DLT 4700 that is only 239MB in total for the 3 weeks that the tape is loaded. On the 4th week, I remove the tape and insert another tape to do a level 0 (monthly) dump.

Question is: What is the command to append more level 3 dumps if I reinsert the level 3 tape?

Ideally, I would like to use the same command for the level 0 ufsdump.

The level 3 command is this: ufsdump 3uf myserver:/dev/rmt/5/mn

Thanks Smilie
# 2  
Old 04-08-2005
If you want to put more dumps on the tape, you would have to use the mt command to go to the end of the last dump (or it would write over the ones you already put on there). See the man page for mt. Use the tape device that includes the 'n' (for no-rewind) and do a mt -f /dev/rmt/yourdevice'n' (such as /dev/rmt/5n) fsf 3 (where 3 is the number of to skip forward).
# 3  
Old 04-08-2005
you should also think about the number...
theses numbers are only (exept 0) logical numbers for the administrator.
if you take your level 0 backup the whole system is backuped....
if you take your level 3 backup the changes will be saved, so if you backup a new level 3 the changes since level 0 will be saved again BUT if you would take level 4 the changes since the level 3 backup will be changed

ufsdump 0vuf /dev/rmt/0 --> whole backup
mt fsf 1 --> forward one tapestamp
ufsdump 3vuf /dev/rmt/0n --> backup changes since 0 to unrewind tape
mt fsf 2 --> forward two tapestamps
ufsdump 5vuf /dev/rmt/0n --> backup changes since 3 ....
...
..
.
ufsdump 4vuf /dev/rmt/0n --> backup changes since 3 but the 5 will be ignored and changes will also be stored....

with the -u option the system updates you /etc/dumpdates to manage the dump-levels

greetings pressy
# 4  
Old 04-18-2005
I'll try it next time.

Thanks for the tips!

I'll try it for this coming weekend and let you know the results.

Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Ejecting tape on AIX & Some Tape commands

I am trying to use this command to eject the tape mt -f /dev/rmt/0 unload but it gives me error mt -f /dev/rmt/0 unload mt: 0511-575 unload is not a recognized subcommand. Usage: mt Subcommand Valid subcommands are: weof eof fsf bsf ... (5 Replies)
Discussion started by: filosophizer
5 Replies

2. Solaris

ufsdump

Experts, Before patching am advised to take backup : so am going with: ufsdump -0uf /dev/rmt0 / ---> to take the whole / bkp to tape. some servers have /var in diff slice, In this case whether i need to take backup of /var also in tape? ufsdump -ouf /dev/rmt0 /var ---> to take... (3 Replies)
Discussion started by: fizan
3 Replies

3. Solaris

possible to do ufsdump backup without a tape drive ?

hi friends, i am trying to patch a solaris 9 server. However i need to do a ufsdump backup before any patching. There is no hardware port for connecting the tape drive. Any other ways to do a ufsdump ? :wall: (2 Replies)
Discussion started by: Exposure
2 Replies

4. Solaris

Using ufsrestore from a DAT tape of ufsdump backup

hi, was wondering if there is a problem with the patches, and if we wish to restore everything back to square one, how should we go about using ufsrestore from a DAT tape of ufsdump backup data ? (1 Reply)
Discussion started by: Exposure
1 Replies

5. Filesystems, Disks and Memory

Appending files to a tape drive

I've starting playing with a tape drive for the first time. Its a new one, an IBM Ultrium LTO 4. After initially copying a file to the tape with tar cvf /dev/st0 /root/dummy, all subsequent files appended take an increasing amount of time with tar rvf /dev/st0 /root/dummyX. Is it normal for each... (2 Replies)
Discussion started by: jeriryan87
2 Replies

6. SCO

Tape Status shows 2 Hard errors and 5 Underruns on new tape

when I do a tape status /dev/rStp0 I get the following on a new tape and I have tried several: Status : ready beginning-of-tape soft errors : 0 hard errors: 2 underruns: 5 My BackupEdge has stopped backing up my system because it asks for a new volume yet my total system data is under 20... (5 Replies)
Discussion started by: psytropic
5 Replies

7. 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

8. UNIX for Advanced & Expert Users

Space free on tape /delete a single file on tape

Hi, I' using a sun solaris server, I would like to known if there is the possibility to control how many space is free on a tape and how I can delete a single file on a tape. Thanks DOMENICO (3 Replies)
Discussion started by: Minguccio75
3 Replies

9. UNIX for Dummies Questions & Answers

ufsdump

hi i would like to backup my OS what is the exact command to do? beside backup to tapes can i back up to a directory in another server? will the command be the same? thanks. :confused: (4 Replies)
Discussion started by: legato
4 Replies

10. UNIX for Dummies Questions & Answers

Is it possible to ufsdump to a file instead of a tape device?

Eh... what the title says. :) (8 Replies)
Discussion started by: PSC
8 Replies
Login or Register to Ask a Question