I know it's late on a friday ... but here goes. I have server 1 with tape 1, and server 2 with tape 2. I backup half server 1 to tape 1, and half to tape 2 using the following commands on server 1
tar cvf /dev/rmt/0 -I include_file
tar cvfb - 20 -I include_file_2 | rsh server2 dd of=/dev/rmt/0 obs=20
I can easily get the data off tape 1 onto server 1 from server 1 using tar xvf /dev/rmt/0
How can I get the data off tape 2 onto server 1 while logged on to server 1? Is it possible?
Greg.
tar cvf /dev/rmt/0 -I include_file
tar cvfb - 20 -I include_file_2 | rsh server2 dd of=/dev/rmt/0 obs=20
I can easily get the data off tape 1 onto server 1 from server 1 using tar xvf /dev/rmt/0
How can I get the data off tape 2 onto server 1 while logged on to server 1? Is it possible?
Greg.