<?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: Listing ignite backup in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259871#M332803</link>
    <description>Razi,&lt;BR /&gt;&lt;BR /&gt;Whether it is a tar or pax in both cases you need to grep for required files from the listing (complete list.&lt;BR /&gt;&lt;BR /&gt;tar -tvf tape device |grep -i &lt;FILENAME&gt;&lt;BR /&gt;&lt;BR /&gt;To check tape contents and verify..You can do following:&lt;BR /&gt;&lt;BR /&gt;1. Use find to create a listing of files that you want to backup&lt;BR /&gt;&lt;BR /&gt;2. Create a listing of tape archive &lt;BR /&gt;&lt;BR /&gt;3. run diff or sdiff on both files&lt;BR /&gt;&lt;BR /&gt;This will verify files easily.&lt;BR /&gt;&lt;BR /&gt;&lt;/FILENAME&gt;</description>
    <pubDate>Thu, 28 Aug 2008 22:39:00 GMT</pubDate>
    <dc:creator>Deepak Kr</dc:creator>
    <dc:date>2008-08-28T22:39:00Z</dc:date>
    <item>
      <title>Listing ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259863#M332795</link>
      <description>I wanna check if a particular file is present in the ignite backup by lisiting that file. That file say file1.date is present in /DR folder, How can I check just this file only?&lt;BR /&gt;&lt;BR /&gt;tar -tvf filename do the lisitng of whole archives, what about pax, can some one give me the syntax to just list a particular file using pax from ignite backup</description>
      <pubDate>Thu, 28 Aug 2008 14:27:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259863#M332795</guid>
      <dc:creator>Waqar Razi</dc:creator>
      <dc:date>2008-08-28T14:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Listing ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259864#M332796</link>
      <description>mt -t /dev/rmtXmn fsf 1  (note the no-rewind)&lt;BR /&gt;tar vtf /dev/rmtXm |grep file1.date&lt;BR /&gt;&lt;BR /&gt;(tar does not allow the listing of just a single file in the archive )  pipe to grep or send listing to file then grep that file.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 28 Aug 2008 14:56:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259864#M332796</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-08-28T14:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Listing ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259865#M332797</link>
      <description>Can I use pax for listing just one file?</description>
      <pubDate>Thu, 28 Aug 2008 14:59:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259865#M332797</guid>
      <dc:creator>Waqar Razi</dc:creator>
      <dc:date>2008-08-28T14:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Listing ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259866#M332798</link>
      <description>The man page is your friend.&lt;BR /&gt;&lt;BR /&gt;man pax&lt;BR /&gt;&lt;BR /&gt;pax -f tar.file name_of_file&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 28 Aug 2008 15:33:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259866#M332798</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-08-28T15:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Listing ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259867#M332799</link>
      <description>Hi Waqar:&lt;BR /&gt;&lt;BR /&gt;Regardless of whether you extract the archive with 'tar' or 'pax', you are going to read the archive sequentially to its end.  Thus, if this is a tape, be patient!&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 28 Aug 2008 15:57:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259867#M332799</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-08-28T15:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Listing ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259868#M332800</link>
      <description>What if I restore a particular file, lets say ignite.date in /DR/Ignite directory.&lt;BR /&gt;The command would be &lt;BR /&gt;&lt;BR /&gt;tar -xvf /dev/rmt/0mn /DR/Ignite/ignite.date&lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt;&lt;BR /&gt;tar -xvf /dev/rmt/0mn DR/Ignite/ignite.date.&lt;BR /&gt;&lt;BR /&gt;The output of tar -tvf /dev/rmt/0mn is as follows:&lt;BR /&gt;&lt;BR /&gt;r-xr-xr-x   2/2      0 Aug 28 11:01 2008 stand/&lt;BR /&gt;rwxr-xr-x   0/0      0 Nov 30 06:37 2004 stand/lost+found/&lt;BR /&gt;r--r--r--   0/3   1771 Mar 17 19:30 2008 stand/system&lt;BR /&gt;r--r--r--   0/3     82 Nov 15 14:04 2000 stand/kernrel&lt;BR /&gt;rw-rw-rw-   0/3  11344 Jul 31 04:00 2008 stand/ioconfig&lt;BR /&gt;rw-r--r--   0/3     19 Jan 15 00:48 2006 stand/bootconf&lt;BR /&gt;rw-------   0/3      0 Nov 30 06:57 2004 stand/.kminstall_lock&lt;BR /&gt;rwxr-xr-x   0/3      0 Mar 17 19:31 2008 stand/system.d/&lt;BR /&gt;rw-r--r--   0/3    174 Jan 15 00:55 2006 stand/system.d/krm&lt;BR /&gt;rw-r--r--   0/3     36 Mar 17 19:30 2008 stand/system.d/emcp&lt;BR /&gt;rw-r--r--   0/3     36 Mar 17 19:31 2008 stand/system.d/emcpmpx&lt;BR /&gt;rw-r--r--   0/3     36 Mar 17 19:30 2008 stand/system.d/emcpcg&lt;BR /&gt;rw-r--r--   0/3     36 Mar 17 19:30 2008 stand/system.d/emcpsapi&lt;BR /&gt;rw-r--r--   0/3     36 Mar 17 19:31 2008 stand/system.d/emcpgpx&lt;BR /&gt;rw-r--r--   0/3     36 Mar 17 19:31 2008 stand/system.d/emcpgpx_dm&lt;BR /&gt;rwxr-xr-x   0/3      0 Mar 17 19:31 2008 stand/build/&lt;BR /&gt;rw-r--r--   0/3  96814 Mar 17 19:31 2008 stand/build/conf.c&lt;BR /&gt;rwxr--r--   0/3  15489 Mar 17 19:31 2008 stand/build/config.mk&lt;BR /&gt;rw-r--r--   0/3   5116 Mar 17 19:31 2008 stand/build/tune.h&lt;BR /&gt;rwxr-xr-x   0/3      0 Mar 17 19:31 2008 stand/build/mod_wk.d/&lt;BR /&gt;rwxr-xr-x   0/3      0 Mar 17 19:31 2008 stand/build/mod_wk.d/krm/&lt;BR /&gt;rw-r--r--   0/3    169 Mar 17 19:31 2008 stand/build/mod_wk.d/krm/mod_conf.c</description>
      <pubDate>Thu, 28 Aug 2008 16:29:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259868#M332800</guid>
      <dc:creator>Waqar Razi</dc:creator>
      <dc:date>2008-08-28T16:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: Listing ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259869#M332801</link>
      <description>That would work.  but.. these are sequetial archives.  whether you use tar and grep or pax to retrieve the list, both will read the entire tape.&lt;BR /&gt;&lt;BR /&gt;Not sure why it is an issue.  It does not take more than a couple minutes to retrieve the listing.  &lt;BR /&gt;&lt;BR /&gt;Maybe explain further ?</description>
      <pubDate>Thu, 28 Aug 2008 17:09:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259869#M332801</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-08-28T17:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Listing ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259870#M332802</link>
      <description>I am writing a script to verify if the tape is readable at the end of ignite process by either doing a listing or retreiving any file to a particular directory.&lt;BR /&gt;&lt;BR /&gt;Listing I believe is more safer as compared to retreive, but to list the whole ignite backup, it takes more than one hour.</description>
      <pubDate>Thu, 28 Aug 2008 17:17:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259870#M332802</guid>
      <dc:creator>Waqar Razi</dc:creator>
      <dc:date>2008-08-28T17:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Listing ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259871#M332803</link>
      <description>Razi,&lt;BR /&gt;&lt;BR /&gt;Whether it is a tar or pax in both cases you need to grep for required files from the listing (complete list.&lt;BR /&gt;&lt;BR /&gt;tar -tvf tape device |grep -i &lt;FILENAME&gt;&lt;BR /&gt;&lt;BR /&gt;To check tape contents and verify..You can do following:&lt;BR /&gt;&lt;BR /&gt;1. Use find to create a listing of files that you want to backup&lt;BR /&gt;&lt;BR /&gt;2. Create a listing of tape archive &lt;BR /&gt;&lt;BR /&gt;3. run diff or sdiff on both files&lt;BR /&gt;&lt;BR /&gt;This will verify files easily.&lt;BR /&gt;&lt;BR /&gt;&lt;/FILENAME&gt;</description>
      <pubDate>Thu, 28 Aug 2008 22:39:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259871#M332803</guid>
      <dc:creator>Deepak Kr</dc:creator>
      <dc:date>2008-08-28T22:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Listing ignite backup</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259872#M332804</link>
      <description>Hi Wagar:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I am writing a script to verify if the tape is readable at the end of ignite process by either doing a listing or retreiving any file to a particular directory&lt;BR /&gt;&lt;BR /&gt;In my opinion, if the Ignite backup returns a sucessful indication in its return code ($? = 0) then the backup was good.&lt;BR /&gt;&lt;BR /&gt;Reading a tape, however successful today, doesn't mean that tomorrow you will be able to read the same tape.&lt;BR /&gt;&lt;BR /&gt;You should clean your tape drives routinely; store and tapes in a good physical environment (clean, not too humid, hot or cold); and recycle them when they have been used too many times.  Making and retaining multiple Ignite backups is good insurance, too, that you can always recover should you need to do so.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 28 Aug 2008 22:55:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/listing-ignite-backup/m-p/4259872#M332804</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-08-28T22:55:08Z</dc:date>
    </item>
  </channel>
</rss>

