Hi! If I can read this properly, you suggest to make the copy of the image to the second tape drive. But we need both tape drives for backup reasons. The image should only be dumped to a file. But I think, there would be the possibility to mount a image file as device and tell dd to copy the data to that one :-) Problem could be the variable size of this image device. But thnx a lot for your idea!
Bye, Simon On Tue, 26 Aug 2003, Paul Bijnens wrote: > Simon Frettloeh wrote: > > > Is there a way of creating a copy or image file of the data, that's > > already being backed up to tape? > > > > We've already got Amanda running on our system with two tape devices > > running well. We'd like to produce a (encrypted) copy of the backed up > > > Would this work? > > while dd bs=32k if=/dev/nst0 of=/dev/nst1 > do : > done > > or with encryption: > > while dd ibs=32k if=/dev/nst0 | encrypt | dd obs=32k of=/dev/nst1 > do : > done > > Whatever you use for encryption, the script could be changed of course. > > Maybe there is some elegant solution using RAIT (never used it; > never done it). > > >