LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Backup onto multi tapes with compression (https://www.linuxquestions.org/questions/linux-software-2/backup-onto-multi-tapes-with-compression-4175508441/)

apolinsky 06-18-2014 08:04 PM

Backup onto multi tapes with compression
 
I would like to backup a NAS to a series of LT02 tapes, (200 gigs uncompressed, 400gigs compressed.) There are about 700 gigs of data to back up. I initially tried cpio, first trying to set hardware compression with an mt -f /dev/nst0 compression and then invoking cpio with:
find . -depth -print | cpio -ocBv 2>/root/file_backup > /dev/nst0. It does not appear the compression was set, as four tapes were needed. When I tried:

find . -print -depth -mount | cpio -oCvB 2> /root/file_backup | gzip -c > /dev/nst0 which did compress the backup as expected but at the end of the tape I was not prompted to mount a second tape.

Tar with compression works fine, but you cannot use the multi-tape option with compression. Does someone have and alternate suggestion?

canussie 06-18-2014 11:01 PM

dump might be one to try.

apolinsky 06-19-2014 02:11 AM

There is no question that dump is a wonderful and reliable backup piece of software, but it doesn't match the requirements of the job. I've used it for years on my FreeBSD machines. Thanks, though for the suggestion.

canussie 06-19-2014 08:34 AM

Amanda?

apolinsky 06-19-2014 08:59 AM

Amanda almost does the trick, though I admit I haven't used it in awhile. I will be moving to Bacula in awhile that I've always considered an enterprise level piece of software. I was just trying to come up with a simple solution till I get Bacula configured.

Thanks again for your suggestions.


All times are GMT -5. The time now is 06:25 PM.