Encrypt backups with GPG to multiple tapes
Posted
by Dan
on Server Fault
See other posts from Server Fault
or by Dan
Published on 2009-10-26T19:08:09Z
Indexed on
2010/05/02
16:08 UTC
Read the original article
Hit count: 210
Currently, I use tar to write my backups (ntbackup files) to a tape drive fed by an autoloader.
Ex:
tar -F /root/advancetape -cvf /dev/st0 *.bkf
(/root/advancetape just has the logic to advance to the next tape if there is one available or notify to swap the tapes out)
I was recently handed the requirement to encrypt our tape backups. I can easily encrypt the data with no problems using GPG. The problem I'm having is how do I write this to multiple tapes with the same logic that tar uses to advance the tapes once the current one is filled? I cannot write the encrypted file to disk first (2+TB). As far as I can tell, tar will not accept binary input from stdin (it's looking for file names). Any ideas? :(
© Server Fault or respective owner