<?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: fbackup creating two index files in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6459394#M603103</link>
    <description>&lt;P&gt;So, changing the script did result in one backup index file. &amp;nbsp;Thanks for pointing this out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One more question, I am getting a "fbackup(3205): WARNING: unable to read a volume header " even when NOT using new tapes, but using tape with a fbackup already on them. &amp;nbsp;Is such a warning message normal? &amp;nbsp;What is strange that I am not getting a warning for every used tape.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tiziana&lt;/P&gt;</description>
    <pubDate>Mon, 28 Apr 2014 09:43:06 GMT</pubDate>
    <dc:creator>nollop</dc:creator>
    <dc:date>2014-04-28T09:43:06Z</dc:date>
    <item>
      <title>fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457464#M603095</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a simple backup script using fbackup to read from a graph file. &amp;nbsp;Each time I use a new tape, I notice that two index files are being created - the first one is empty, the second one (time stamped a minute after the first index file) is the correct file with a list of indexed files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the backupscript I am using:&lt;/P&gt;&lt;P&gt;#!/usr/bin/sh&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOGFILE=/tmp/backupindex.`date +%Y-%m-%d-%H:%M`&lt;/P&gt;&lt;P&gt;LOGFILE1=/tmp/backuplog.`date +%Y-%m-%d-%H:%M`&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TAPEDRIVE=/dev/rmt/0mn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#Rewind tape&lt;/P&gt;&lt;P&gt;mt -f $TAPEDRIVE rewind &amp;gt;&amp;gt; $LOGFILE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;fbackup -0u -f $TAPEDRIVE -g /tmp/backupgraph -I /tmp/backupindex.`date +%Y-%m-%d-%H:%M` 2&amp;gt; /tmp/backuplog.`date +%Y-%m-%d-%H:%M`&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;mailx -s "Backup to Tape" admin@abc.com &amp;lt; $LOGFILE&lt;/P&gt;&lt;P&gt;mailx -s "Backup to Tape" admin@abc.com &amp;lt; $LOGFILE1&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;echo backup complete&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know why such behaviour?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2014 07:16:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457464#M603095</guid>
      <dc:creator>nollop</dc:creator>
      <dc:date>2014-04-25T07:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457732#M603096</link>
      <description>&lt;P&gt;The reason is that you are specifying an index file name in your 'fbackup' command line rather than using the $LOGFILE variable you have already defined, so you get different time stamps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I would do:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;#!/usr/bin/sh&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LOGFILE=/tmp/backupindex.$(date +%Y-%m-%d-%H:%M)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LOGFILE1=/tmp/backuplog.$(date +%Y-%m-%d-%H:%M)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;TAPEDRIVE=/dev/rmt/0mn&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;#Rewind tape&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;mt -f $TAPEDRIVE rewind &amp;gt;&amp;gt; ${LOGFILE1}&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;fbackup -0u -f $TAPEDRIVE -g /tmp/backupgraph -I ${LOGFILE} 2&amp;gt; ${LOGFILE1}&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;mailx -s "Backup to Tape" admin@abc.com &amp;lt; ${LOGFILE}&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;mailx -s "Backup to Tape" admin@abc.com &amp;lt; ${LOGFILE1}&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2014 13:33:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457732#M603096</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2014-04-25T13:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457760#M603097</link>
      <description>&lt;P&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get that I am creating another file in the script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But why is it creating two index files each time? &amp;nbsp;I am only noticing this problem on Mondays, when I use a new tape media. On the remaining days, when I overwrite the tape, I get only one (correct) index file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2014 13:57:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457760#M603097</guid>
      <dc:creator>nollop</dc:creator>
      <dc:date>2014-04-25T13:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457784#M603098</link>
      <description>&lt;P&gt;With the script that you provided you will always get 2 /tmp/backupindex files created. &amp;nbsp;The first will be created when you rewind the tape, which is probably the empty one you see. &amp;nbsp;The second file will be created by the fbackup command itself and will be the one with all of your files in it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First file created here:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;LOGFILE=/tmp/backupindex.`date +%Y-%m-%d-%H:%M`&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;mt -f $TAPEDRIVE rewind &amp;gt;&amp;gt; $LOGFILE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second file created here with the different time stamp:&lt;/P&gt;&lt;P&gt;fbackup -0u -f $TAPEDRIVE -g /tmp/backupgraph -I /tmp/backupindex.`date +%Y-%m-%d-%H:%M` 2&amp;gt; /tmp/backuplog.`date +%Y-%m-%d-%H:%M`&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What may be occurring is that when &amp;nbsp;you use a new piece of media, fbackup has to create the fbackup header on the tape. &amp;nbsp;That takes a little bit of time. &amp;nbsp;It may be that this amount of time is enough that the file specified on the fbackup command line will have a different time stamp.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically the scenario is this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Previously used media:&lt;/P&gt;&lt;P&gt;mt command is run and creates /tmp/backupindex.2014-04-25-09:19, which is probably empty.&lt;/P&gt;&lt;P&gt;fbackup runs, doesn't have to do much with the tape header, and starts writing to the same file name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New media:&lt;/P&gt;&lt;P&gt;mt command is run and creates /tmp/backupindex.2014-04-25-09:19, which is probably empty.&lt;/P&gt;&lt;P&gt;fbackups runs, sees that the media is new, does its thing with creating the fbackup header, and then starts backuping up. &amp;nbsp;When it gets to the point of creating a new file it creates /tmp/backupindex.2014-04-25-09:20 because the additional tasks have taken more time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you use the $LOGFILE variable in the fbackup command line, this will no longer happen.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2014 14:22:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457784#M603098</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2014-04-25T14:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457788#M603099</link>
      <description>&lt;P&gt;Actually no, I am only getting two LOGFILE (the index file) on Mondays when I use a new tape. &amp;nbsp;Otherwise on the other days (Tuesday-Friday) I only get one index file. &amp;nbsp;On all days I only get one backup log file (LOGFILE1).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Strange?? &amp;nbsp;That is why I was thinking there is something wrong with backups on Mondays. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2014 14:19:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457788#M603099</guid>
      <dc:creator>nollop</dc:creator>
      <dc:date>2014-04-25T14:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457792#M603100</link>
      <description>&lt;P&gt;Post above edited with a theory...&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2014 14:23:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457792#M603100</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2014-04-25T14:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457808#M603101</link>
      <description>&lt;P&gt;Makes sense now. &amp;nbsp;I'll try this and let you know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2014 14:30:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457808#M603101</guid>
      <dc:creator>nollop</dc:creator>
      <dc:date>2014-04-25T14:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457970#M603102</link>
      <description>&lt;P&gt;&amp;gt;specifying an index file name in your fbackup command line rather than using the $LOGFILE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sure looks like it.&amp;nbsp; But the script can be improved to make sure the timestamps for the two files are the same:&lt;/P&gt;&lt;P&gt;TS=&lt;FONT face="courier new,courier"&gt;$(date +%Y-%m-%d-%H:%M)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LOGFILE=/tmp/backupindex.$TS&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;LOGFILE1=/tmp/backuplog.$TS&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;And the two mail messages combined using a here doc:&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;mailx -s "Backup to Tape" admin@abc.com &amp;lt;&amp;lt;EOF&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Index file&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;==========&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;$(&amp;lt; $LOGFILE)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Log file&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;========&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;$(&amp;lt; $LOGFILE1)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;EOF&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2014 17:56:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6457970#M603102</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2014-04-25T17:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6459394#M603103</link>
      <description>&lt;P&gt;So, changing the script did result in one backup index file. &amp;nbsp;Thanks for pointing this out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One more question, I am getting a "fbackup(3205): WARNING: unable to read a volume header " even when NOT using new tapes, but using tape with a fbackup already on them. &amp;nbsp;Is such a warning message normal? &amp;nbsp;What is strange that I am not getting a warning for every used tape.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tiziana&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2014 09:43:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6459394#M603103</guid>
      <dc:creator>nollop</dc:creator>
      <dc:date>2014-04-28T09:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6459686#M603104</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;If fbackup cannot read a tape header on tapes that have already been used (only?) by fbackup, I would worry about the viability of the backups on those tapes.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Some tests I would do (all assume a tape drive of /dev/rmt/1mn -- use whatever is correct for you):&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;1) Make sure you can read the fbackup header:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;# frecover -V /tmp/fbackup-tape-header.txt -f /dev/rmt/1m&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;2) Make sure you can read the fbackup file index:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;# frecover -I /tmp/fbackup-tape-index.txt -f /dev/rmt/1m&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;3) Try to read all files from the tape (pretend to recover, but do not write any files to disk):&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;# frecover -rNvf /dev/rmt/1m&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;If none of the above work on a tape that was written by fbackup, then I would also check to make sure that you don't have another process (an Ignite make_tape_recovery or a tar of some sort) that is overwriting your fbackup after it has completed.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2014 14:56:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6459686#M603104</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2014-04-28T14:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6460644#M603105</link>
      <description>&lt;P&gt;Backups seem to be successful as I can read all files successfully. &amp;nbsp;I have changed the script to use the /dev/rmt/0m device instead of /dev/rmt/0mn device, since I read on man pages that no rewind devices shouldn't be used. &amp;nbsp;I will monitor Monday's backup to see if this produces the same warning.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2014 13:01:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6460644#M603105</guid>
      <dc:creator>nollop</dc:creator>
      <dc:date>2014-04-29T13:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6460668#M603106</link>
      <description>&lt;P&gt;&amp;gt;&amp;gt;&lt;SPAN&gt;I will monitor Monday's backup to see if this produces the same warning.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you always use new tapes, or at least tapes that have never been used with fbackup, on Mondays then you will always get the 'no fbackup header' message. &amp;nbsp;That is completely normal when using a new to fbackup tape.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you get the 'no fbackup header' message with tapes that &lt;STRONG&gt;have&lt;/STRONG&gt; been used with fbackup is when I would be concerned.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2014 13:25:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6460668#M603106</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2014-04-29T13:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: fbackup creating two index files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6468034#M603107</link>
      <description>&lt;P&gt;Turns out some tapes were previously used for a tar backup - hence the warning message about unable to read header.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot for the help on this issue.&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2014 09:44:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fbackup-creating-two-index-files/m-p/6468034#M603107</guid>
      <dc:creator>nollop</dc:creator>
      <dc:date>2014-05-07T09:44:22Z</dc:date>
    </item>
  </channel>
</rss>

