<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Backups on tape in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632824#M947</link>
    <description>Thank you all for your help, but what I need is a software that let me backup on more than one tape on LINUX, like tar -m. I tried to use tar again, but it isn't very reliable. Fbackup seems a good option but it doesn't work on linux. CPIO supports multi-volume?</description>
    <pubDate>Thu, 20 Dec 2001 20:14:39 GMT</pubDate>
    <dc:creator>Alfonso_4</dc:creator>
    <dc:date>2001-12-20T20:14:39Z</dc:date>
    <item>
      <title>Backups on tape</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632819#M942</link>
      <description>Hi, I need to backup a lot of information on tapes. I need to use more than one tape on each backup so I used tar -M (multi-volume)and dump -M, but it doesn't seems to work very well. Because when tar ask me the next tape and I insert it, tar send me this error message: "tar: Error is not recoverable: exiting now"&lt;BR /&gt;&lt;BR /&gt;Could you recommend me another software to backup or the right way to backup with tar or dump with multi-volume option?&lt;BR /&gt;Thank you.&lt;BR /&gt;I will appreciate any help.&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Dec 2001 01:59:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632819#M942</guid>
      <dc:creator>Alfonso_4</dc:creator>
      <dc:date>2001-12-19T01:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Backups on tape</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632820#M943</link>
      <description>hey,&lt;BR /&gt;&lt;BR /&gt;You can use fbackup command :&lt;BR /&gt;&lt;BR /&gt;fbackup -0i / -f /dev/rmt/0mn&lt;BR /&gt;(For all host file system)&lt;BR /&gt;&lt;BR /&gt;fbackup -0i / -e &lt;PATH&gt; -e &lt;OTHER path=""&gt; -f /dev/rmt/0mn&lt;BR /&gt;(For selected data)&lt;BR /&gt;ex.:&lt;BR /&gt;&lt;BR /&gt;fbackup -0i / -e /tbdat -e /tbsys -e /dbs -e /tbsys_u2 -f /dev/rmt/0mn&lt;BR /&gt;&lt;BR /&gt;You can use with sam!&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;Frank&lt;/OTHER&gt;&lt;/PATH&gt;</description>
      <pubDate>Wed, 19 Dec 2001 19:49:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632820#M943</guid>
      <dc:creator>Francois Bariselle_3</dc:creator>
      <dc:date>2001-12-19T19:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: Backups on tape</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632821#M944</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;fbackup / sam are UX tools with linux version / tar version are you using?&lt;BR /&gt;&lt;BR /&gt;you could create a shel script that figures out the ammount of data that is in the file systems you try to backup ( &lt;BR /&gt;A=0&lt;BR /&gt;for i in `df -vk | grep -v used | awk '{print $3)'`&lt;BR /&gt;do &lt;BR /&gt;let A="$A ++ $1"&lt;BR /&gt;echo $A&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;should show the ammount of disk space used.&lt;BR /&gt;combine it with the ammount of data you can put on tape and start a partial backup.&lt;BR /&gt;&lt;BR /&gt;Hope this will help,&lt;BR /&gt;&lt;BR /&gt;Gideon&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Dec 2001 20:05:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632821#M944</guid>
      <dc:creator>G. Vrijhoeven</dc:creator>
      <dc:date>2001-12-19T20:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Backups on tape</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632822#M945</link>
      <description>Other questions -- could you use tar with the z option to gnu-zip the backups also? How big are the tapes, how many gigs are you moving, etc.?&lt;BR /&gt;&lt;BR /&gt;just a thought.</description>
      <pubDate>Wed, 19 Dec 2001 22:14:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632822#M945</guid>
      <dc:creator>Mark Fenton</dc:creator>
      <dc:date>2001-12-19T22:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: Backups on tape</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632823#M946</link>
      <description>I use cpio&lt;BR /&gt;&lt;BR /&gt;cd /tmp&lt;BR /&gt;find . |cpio -ocv &amp;lt; /dev/&lt;DEVICE&gt;&lt;BR /&gt;o &lt;BR /&gt;find /home |cpio -ocv &amp;lt; /dev/&lt;DEVICE&gt;&lt;BR /&gt;&lt;BR /&gt;cpio -ocv /home &amp;lt; /dev/&lt;DEVICE&gt;&lt;BR /&gt;&lt;BR /&gt;whit -C  he establishes the size in blocks of E/S&lt;BR /&gt;&lt;/DEVICE&gt;&lt;/DEVICE&gt;&lt;/DEVICE&gt;</description>
      <pubDate>Thu, 20 Dec 2001 13:29:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632823#M946</guid>
      <dc:creator>Jairo Campana</dc:creator>
      <dc:date>2001-12-20T13:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Backups on tape</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632824#M947</link>
      <description>Thank you all for your help, but what I need is a software that let me backup on more than one tape on LINUX, like tar -m. I tried to use tar again, but it isn't very reliable. Fbackup seems a good option but it doesn't work on linux. CPIO supports multi-volume?</description>
      <pubDate>Thu, 20 Dec 2001 20:14:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632824#M947</guid>
      <dc:creator>Alfonso_4</dc:creator>
      <dc:date>2001-12-20T20:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Backups on tape</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632825#M948</link>
      <description>Provided that you're using ext2, you can use the "dump" and "restore" utilities, as they will ask for a new tape whenever it's necessary to perform the backup. For example, to make a level 0 dump of the / filesystem to /dev/rmt0n you would do:&lt;BR /&gt;&lt;BR /&gt;dump -0 -f /dev/rmt0n /&lt;BR /&gt;&lt;BR /&gt;To perform an interactive restore, you use... &lt;BR /&gt;&lt;BR /&gt;restore -i -f /dev/rmt0n&lt;BR /&gt;&lt;BR /&gt;Dump/restore are filsesystem specific; that is, you can't use dump/restore in a ReiserFS filesystem. If you're using XFS, it features xfsdump/xfsrestore. I don't know how JFS manages filesystem dumps.&lt;BR /&gt;&lt;BR /&gt;Hope it helps,&lt;BR /&gt;&lt;BR /&gt;Paulo Fessel</description>
      <pubDate>Thu, 20 Dec 2001 20:57:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632825#M948</guid>
      <dc:creator>Paulo A G Fessel</dc:creator>
      <dc:date>2001-12-20T20:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Backups on tape</title>
      <link>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632826#M949</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The best way to achieve what you want is to use a real backup software, instead of "tar" or "cpio" (standard unix archiving software).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In OpenSource products, you can read the documentation of "amanda" (I don't know how to use it, but I've heard that it is a good product).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In commercial products, I would suggest ARKEIA that is normally free for a very limited number of clients.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Of course, both software handle multi-volume. They can also backup over the network to another machine (client/server).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Another trick : if the -M option of the "tar" command is not reliable, it may be due to the variable size of your data. I guess (but I'm not sure) at the end of the tape, the last data block sometimes could be truncated and in that case the tar would return and error.&lt;BR /&gt;&lt;BR /&gt;To avoid that, you can force the tar to request another tape when it reaches a pre-defined size, by using the "-L" option.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For example if you use a DDS3 device with 125m tapes and compression, the mean amount data that could be theoretically stored is 24 GB. Then, you may use "-L" to limit this size to 20 GB, to force the "tar" command requesting another tape before reaching the end-of-tape.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I guess the "-L" should be combined with "-M", but I haven't tested this.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kodjo</description>
      <pubDate>Thu, 20 Dec 2001 23:39:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/backups-on-tape/m-p/2632826#M949</guid>
      <dc:creator>Kodjo Agbenu</dc:creator>
      <dc:date>2001-12-20T23:39:41Z</dc:date>
    </item>
  </channel>
</rss>

