<?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: list contents of a tape in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992463#M124653</link>
    <description>Hi,&lt;BR /&gt;if you want to have the list of the content of your tape, just use the following sintax:&lt;BR /&gt;&lt;BR /&gt;/usr/sbin/frecover -f $TAPE -I $I/DDS.indice&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$TAPE your tape 1m&lt;BR /&gt;&lt;BR /&gt;$I your directory&lt;BR /&gt;DDS.indice the name of the file&lt;BR /&gt;&lt;BR /&gt;This will recover the index of what was backed-up.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;  Massimo&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 09 Jun 2003 15:37:24 GMT</pubDate>
    <dc:creator>Massimo Bianchi</dc:creator>
    <dc:date>2003-06-09T15:37:24Z</dc:date>
    <item>
      <title>list contents of a tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992461#M124651</link>
      <description>I want to list the contents of a backup tape to my temp file and I am using the following command:&lt;BR /&gt;frecover -rNvf /dev/rmt/1m &amp;gt; /home/xxxxxx/temp&lt;BR /&gt;Can someone please tell me what I am doing wrong because it is not working.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Paul</description>
      <pubDate>Mon, 09 Jun 2003 15:34:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992461#M124651</guid>
      <dc:creator>Paul Wright</dc:creator>
      <dc:date>2003-06-09T15:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: list contents of a tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992462#M124652</link>
      <description>Try the following:&lt;BR /&gt;&lt;BR /&gt;# frecovery -I /tmp/tape_list -f /dev/rmt/1m&lt;BR /&gt;&lt;BR /&gt;The -I option lists the index file on the tape.&lt;BR /&gt;&lt;BR /&gt;# man frecover&lt;BR /&gt;&lt;BR /&gt;for more information.</description>
      <pubDate>Mon, 09 Jun 2003 15:36:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992462#M124652</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2003-06-09T15:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: list contents of a tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992463#M124653</link>
      <description>Hi,&lt;BR /&gt;if you want to have the list of the content of your tape, just use the following sintax:&lt;BR /&gt;&lt;BR /&gt;/usr/sbin/frecover -f $TAPE -I $I/DDS.indice&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$TAPE your tape 1m&lt;BR /&gt;&lt;BR /&gt;$I your directory&lt;BR /&gt;DDS.indice the name of the file&lt;BR /&gt;&lt;BR /&gt;This will recover the index of what was backed-up.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;  Massimo&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Jun 2003 15:37:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992463#M124653</guid>
      <dc:creator>Massimo Bianchi</dc:creator>
      <dc:date>2003-06-09T15:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: list contents of a tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992464#M124654</link>
      <description>Hi Paul,&lt;BR /&gt;&lt;BR /&gt;You've got 2 main options here:&lt;BR /&gt;&lt;BR /&gt;1) frecover -I /home/xxxxxx/temp -f /dev/rmt/1m will give you the index from the tape - this is a list of files *intended* to be backed up, and can be read quickly off the tape.  Files that change between the time the index was created and the backup actually got round to them won't be on the tape.&lt;BR /&gt;&lt;BR /&gt;2) frecover -rNvf /dev/rmt/1m 2&amp;gt; /home/xxxxxx/temp will read the whole backup and list each file name on the tape.  The 2 is needed as the list of files is written to stderr rather than stdout.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;Darren</description>
      <pubDate>Mon, 09 Jun 2003 15:45:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992464#M124654</guid>
      <dc:creator>Darren Prior</dc:creator>
      <dc:date>2003-06-09T15:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: list contents of a tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992465#M124655</link>
      <description>You need to use the -I option:&lt;BR /&gt;&lt;BR /&gt;# frecover -I /tmp/frecover_list -f /dev/rmt/1m&lt;BR /&gt;&lt;BR /&gt;Use with -v for verbose option. The command which you used is for checking the data on tape without doing an actual recover (-N option). Read man pages for more information.</description>
      <pubDate>Mon, 09 Jun 2003 15:45:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992465#M124655</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2003-06-09T15:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: list contents of a tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992466#M124656</link>
      <description>Paul:&lt;BR /&gt;&lt;BR /&gt;Try the following&lt;BR /&gt;&lt;BR /&gt;frecovery -I /tmp/fbackup-list -f /dev/rmt/1m &lt;BR /&gt;&lt;BR /&gt;man frecover for more information.&lt;BR /&gt;&lt;BR /&gt;This is from the man page&lt;BR /&gt;&lt;BR /&gt; -I path     The index on the current volume is extracted from the backup media and is written to path.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;DR</description>
      <pubDate>Mon, 09 Jun 2003 15:52:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/list-contents-of-a-tape/m-p/2992466#M124656</guid>
      <dc:creator>Dario_1</dc:creator>
      <dc:date>2003-06-09T15:52:48Z</dc:date>
    </item>
  </channel>
</rss>

