<?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 Restore in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539576#M222985</link>
    <description>Hi,&lt;BR /&gt;the success of fbackup may be caused by the fact that it was written to the RE-winding  tape device.&lt;BR /&gt;You tar command uses the NON-rewinding device, /dev/rmt/0mn , causing data to be written to the tape, starting at the current tape position (whatever that might be).&lt;BR /&gt; Rewind your tape - before and writing a tar backup to a non-rewinding device, e.g.:&lt;BR /&gt;# mt -t /dev/rmt/0mn rew&lt;BR /&gt;in order to establish a valid starting point, or use the non-rewinding device.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.</description>
    <pubDate>Mon, 09 May 2005 12:16:30 GMT</pubDate>
    <dc:creator>john korterman</dc:creator>
    <dc:date>2005-05-09T12:16:30Z</dc:date>
    <item>
      <title>Backup Restore</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539571#M222980</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Is it possible that restore of backup taken on HP -UX system thorugh tar are not successfull and on the same tape drive and same tape, if backup is taken through fbackup restore doesnt't have any problems. The error we get on the tar backup is as&lt;BR /&gt;&lt;BR /&gt;# tar tvf /dev/rmt/26mn                                                         &lt;BR /&gt;Tar: blocksize = 16         &lt;BR /&gt;Backup on the tape were successfull but while listing and restoring it had problems. The backup taken with tar had been given without any options, as default.We tried all options &lt;BR /&gt;for different blocksizes as below&lt;BR /&gt;&lt;BR /&gt;tar tvfb 64 /dev/rmt/26mn &lt;BR /&gt;tar tvfb 20 /dev/rmt/26mn &lt;BR /&gt;tar tvfb 16 /dev/rmt/26mn&lt;BR /&gt;&lt;BR /&gt;Why is it so that backups taken with fbackup are restored with success while listing and restoring from tar has problems.&lt;BR /&gt;&lt;BR /&gt;Thanx &lt;BR /&gt;Himanshu&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 May 2005 14:52:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539571#M222980</guid>
      <dc:creator>Himanshu_3</dc:creator>
      <dc:date>2005-05-06T14:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Backup Restore</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539572#M222981</link>
      <description>Was the tar backup taken with the HP-UX version of tar or the Gnu Tar?&lt;BR /&gt;&lt;BR /&gt;It sounds like either the tape was overwritten with something else, or the tape somehow got scrambled.</description>
      <pubDate>Fri, 06 May 2005 14:57:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539572#M222981</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2005-05-06T14:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Backup Restore</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539573#M222982</link>
      <description>If fbackup works and tar does not:&lt;BR /&gt;&lt;BR /&gt;tar version may be bad. As noted above, the tape may have been hammered, or the heads could have been dirty when the tar was written.&lt;BR /&gt;&lt;BR /&gt;A fair test is to take a fresh tape, make a tar to tape (the default) and then try and restore the file.&lt;BR /&gt;&lt;BR /&gt;Then do the same thing with a fresh tape with fbackup.&lt;BR /&gt;&lt;BR /&gt;If both tests work, you have no problem and the prior answer is correct, bad luck. If the tar test fails, make sure tar is patched and see what verion of tar you are actually using.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 06 May 2005 17:35:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539573#M222982</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-05-06T17:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Backup Restore</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539574#M222983</link>
      <description>HP-UX tar cannot read tapes with any blocksize other than the default or by specifying the correct blocksize. Use pax instead to restore your data. pax can read any blocksize for tar or cpio and restore your data. The tar tapes may have been created over a network which means that someone messed with the blocksize.</description>
      <pubDate>Fri, 06 May 2005 20:44:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539574#M222983</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-05-06T20:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Backup Restore</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539575#M222984</link>
      <description>Hi Patrick,&lt;BR /&gt;&lt;BR /&gt;The command used was &lt;BR /&gt;tar cvf /dev/rmt/0mn /DDL1/archive.&lt;BR /&gt;&lt;BR /&gt;We have ultimately got the drives replaced and all seems to be well. Can a drive make such a defference that it is able to do fbackup and not tar ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Himanshu&lt;BR /&gt;</description>
      <pubDate>Mon, 09 May 2005 11:54:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539575#M222984</guid>
      <dc:creator>Himanshu_3</dc:creator>
      <dc:date>2005-05-09T11:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Backup Restore</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539576#M222985</link>
      <description>Hi,&lt;BR /&gt;the success of fbackup may be caused by the fact that it was written to the RE-winding  tape device.&lt;BR /&gt;You tar command uses the NON-rewinding device, /dev/rmt/0mn , causing data to be written to the tape, starting at the current tape position (whatever that might be).&lt;BR /&gt; Rewind your tape - before and writing a tar backup to a non-rewinding device, e.g.:&lt;BR /&gt;# mt -t /dev/rmt/0mn rew&lt;BR /&gt;in order to establish a valid starting point, or use the non-rewinding device.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.</description>
      <pubDate>Mon, 09 May 2005 12:16:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539576#M222985</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2005-05-09T12:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Backup Restore</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539577#M222986</link>
      <description>John,&lt;BR /&gt;&lt;BR /&gt;Rewind of the tape had been performed before taking the tar backup.&lt;BR /&gt;&lt;BR /&gt;Thanx&lt;BR /&gt;Himanshu</description>
      <pubDate>Mon, 09 May 2005 12:39:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-restore/m-p/3539577#M222986</guid>
      <dc:creator>Himanshu_3</dc:creator>
      <dc:date>2005-05-09T12:39:24Z</dc:date>
    </item>
  </channel>
</rss>

