I just started using backuppc so I could be on the wrong track. I'm trying to archive some hosts to tape, and would like to use a specific program (dd) to write to the tape. So I've set up an archive host and all's well, almost.

Right now, the command that is actually writing to the tape is 'cat', and this happens because 'cat' is what is used when compression is set to 'none'.

Basically a shell pipeline is being created and the end of it looks like:

  blah blah | /bin/cat >>/dev/nst0

I'd like to use 'dd' so I can control the tape blocksize so that the end of the pipeline looks like:

  blah blah | dd of=/dev/nst0 bs=64k

I could even live with:

  blah blah | dd of=/dev/nst0 bs=64k >>/dev/null

In other words, slip 'dd' in as a 'compression' program just to get it working.

To do this I'd have to be able to specify the compression program, but it looks like I can only specify the type of compression... any ides?

David




-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/backuppc-users
http://backuppc.sourceforge.net/

Reply via email to