<?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: Backup and restore with tar in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-with-tar/m-p/4971224#M417939</link>
    <description>Use the no rewind /dev/rmt/Xmn device:&lt;BR /&gt;&lt;BR /&gt;First backup:&lt;BR /&gt;&lt;BR /&gt;tar cvf /dev/rmt/0mn &lt;DIRECTORY_OR_FILES&gt;&lt;BR /&gt;&lt;BR /&gt;Second backup&lt;BR /&gt;&lt;BR /&gt;tar cvf /dev/rmt/0mn &lt;DIRECTORY_OR_FILES&gt;&lt;BR /&gt;&lt;BR /&gt;Restore first backup&lt;BR /&gt;&lt;BR /&gt;mt -f /dev/rmt/0mn rewind&lt;BR /&gt;&lt;BR /&gt;tar xvf /dev/rmt/0mn&lt;BR /&gt;&lt;BR /&gt;Restore second backup&lt;BR /&gt;&lt;BR /&gt;mt -f /dev/rmt/0mn fsf 1&lt;BR /&gt;&lt;BR /&gt;tar xvf /dev/rmt/0mn&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;And so on...&lt;/DIRECTORY_OR_FILES&gt;&lt;/DIRECTORY_OR_FILES&gt;</description>
    <pubDate>Sat, 01 Apr 2006 11:48:57 GMT</pubDate>
    <dc:creator>Ivan Ferreira</dc:creator>
    <dc:date>2006-04-01T11:48:57Z</dc:date>
    <item>
      <title>Backup and restore with tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-with-tar/m-p/4971221#M417936</link>
      <description>Hi there,&lt;BR /&gt;&lt;BR /&gt;I like to take backup some of our file system using “tar” and append  data daily basis  in same cartridge but I did not find any parameter in man page. would you please check that whether it is possible or not.&lt;BR /&gt;&lt;BR /&gt;Here I like to mention that from this backup I have to restore frequently so please give me the total procedure of backup(with append) and restore.&lt;BR /&gt;&lt;BR /&gt;Mostafa&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 01 Apr 2006 07:54:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-with-tar/m-p/4971221#M417936</guid>
      <dc:creator>rana786</dc:creator>
      <dc:date>2006-04-01T07:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore with tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-with-tar/m-p/4971222#M417937</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;To append a backup in a tape with tar use mt command.&lt;BR /&gt;For example, in the first time, just use tar cvf /dev/rmt/xm /backup&lt;BR /&gt;second time:&lt;BR /&gt;mt -t /dev/rmt/xm fsf 1 --&amp;gt; 1 indicates first tape mark and so on 2,3,4...&lt;BR /&gt;after mt, just use tar cvf, but be very carefull, because every time you tar something to tape, if you use xm tape will rewind and the next time you want to write something, you must use mt first.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;</description>
      <pubDate>Sat, 01 Apr 2006 08:04:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-with-tar/m-p/4971222#M417937</guid>
      <dc:creator>Julio Yamawaki</dc:creator>
      <dc:date>2006-04-01T08:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore with tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-with-tar/m-p/4971223#M417938</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I'm not sure that a backup on a tape using tar is good idea, especially if you want to add files daily. The problem is not in the backup, the problem is in restore. You have to know which tar file on the tape contains the file which you like to restore. In order to know that, you have to support a database with a list of backed up files etc. &lt;BR /&gt;Theoretically it's interesting and relatively simple to create such a backupsystem, but practically it's much easier and not very expensive to buy something like backupexe or similar.&lt;BR /&gt;&lt;BR /&gt;HTH</description>
      <pubDate>Sat, 01 Apr 2006 10:39:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-with-tar/m-p/4971223#M417938</guid>
      <dc:creator>Victor Fridyev</dc:creator>
      <dc:date>2006-04-01T10:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore with tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-with-tar/m-p/4971224#M417939</link>
      <description>Use the no rewind /dev/rmt/Xmn device:&lt;BR /&gt;&lt;BR /&gt;First backup:&lt;BR /&gt;&lt;BR /&gt;tar cvf /dev/rmt/0mn &lt;DIRECTORY_OR_FILES&gt;&lt;BR /&gt;&lt;BR /&gt;Second backup&lt;BR /&gt;&lt;BR /&gt;tar cvf /dev/rmt/0mn &lt;DIRECTORY_OR_FILES&gt;&lt;BR /&gt;&lt;BR /&gt;Restore first backup&lt;BR /&gt;&lt;BR /&gt;mt -f /dev/rmt/0mn rewind&lt;BR /&gt;&lt;BR /&gt;tar xvf /dev/rmt/0mn&lt;BR /&gt;&lt;BR /&gt;Restore second backup&lt;BR /&gt;&lt;BR /&gt;mt -f /dev/rmt/0mn fsf 1&lt;BR /&gt;&lt;BR /&gt;tar xvf /dev/rmt/0mn&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;And so on...&lt;/DIRECTORY_OR_FILES&gt;&lt;/DIRECTORY_OR_FILES&gt;</description>
      <pubDate>Sat, 01 Apr 2006 11:48:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-with-tar/m-p/4971224#M417939</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-04-01T11:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Backup and restore with tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-with-tar/m-p/4971225#M417940</link>
      <description>Its ok.</description>
      <pubDate>Sun, 02 Apr 2006 07:12:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-and-restore-with-tar/m-p/4971225#M417940</guid>
      <dc:creator>rana786</dc:creator>
      <dc:date>2006-04-02T07:12:40Z</dc:date>
    </item>
  </channel>
</rss>

