<?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: How to view/erase data from the tape in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640037#M43391</link>
    <description>If you want to use make_tape_recovery instead, which I recommend, here is the command I use:&lt;BR /&gt;&lt;BR /&gt;/opt/ignite/bin/make_tape_recovery -a /dev/rmt/0mn -I -v -x inc_entire=vg00</description>
    <pubDate>Mon, 07 Jan 2002 16:29:21 GMT</pubDate>
    <dc:creator>Patrick Wallek</dc:creator>
    <dc:date>2002-01-07T16:29:21Z</dc:date>
    <item>
      <title>How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640027#M43381</link>
      <description>I have a 24GB data cartridge ( tape) I used to ( make _tap recovery). I would like to know is there a way I can check the tape and make sure there is data.  another  thing how can I erase this tape. I don't have any backup applications like "Omini backup"  or anything like that, on my server. &lt;BR /&gt;&lt;BR /&gt;Thank You&lt;BR /&gt;&lt;BR /&gt;Raghu&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Jan 2002 13:45:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640027#M43381</guid>
      <dc:creator>Raghuram Ollakal_1</dc:creator>
      <dc:date>2002-01-07T13:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640028#M43382</link>
      <description>Ignite writes data in tar format so iirc you should just be able to do a&lt;BR /&gt;tar tfv /dev/rmt/1m&lt;BR /&gt;&lt;BR /&gt;To check whether there is data on a tape anyway, your old friend is od:&lt;BR /&gt;od -c /dev/rmt/1m | more&lt;BR /&gt;&lt;BR /&gt;To trash a tape there are several good ways:&lt;BR /&gt;1) Bulk eraser&lt;BR /&gt;2) Physically destroy the tape&lt;BR /&gt;3) Use dd to write rubbish to the tape, eg:&lt;BR /&gt;dd if=/stand/vmunix of=/dev/rmt/1m &lt;BR /&gt;&lt;BR /&gt;dave</description>
      <pubDate>Mon, 07 Jan 2002 13:52:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640028#M43382</guid>
      <dc:creator>David Lodge</dc:creator>
      <dc:date>2002-01-07T13:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640029#M43383</link>
      <description>You can test your recovery tape by using check_recovery. &lt;BR /&gt;&lt;BR /&gt;TO erase a tape, you can write a program to write null's to the tape.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Mon, 07 Jan 2002 13:56:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640029#M43383</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-01-07T13:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640030#M43384</link>
      <description>To verify the contents of an Ignite tape:&lt;BR /&gt;&lt;BR /&gt;# mt -t /dev/rmt/0mn fsf 1&lt;BR /&gt;(make sure you use the "no rewind" device file!)&lt;BR /&gt;# tar tvf /dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;Why do you want to erase data from a tape?  Generally its safe just to use it again, this will overwrite any data that was previously present.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Steve</description>
      <pubDate>Mon, 07 Jan 2002 14:00:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640030#M43384</guid>
      <dc:creator>Steven Gillard_2</dc:creator>
      <dc:date>2002-01-07T14:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640031#M43385</link>
      <description>Hi Reghu,&lt;BR /&gt;&lt;BR /&gt;If you want to read the tape you can use 'tar -tvf /dev/rmt/0m' command to read the tape. If you want to check the log files created by last make_recovery command, then read the files in /var/opt/ignite/logs. Also if you want to compare the last make_recovery with the current system status, use the command 'check_recovery' (this will be useful only if you have executed the make_recovery command with -C option). &lt;BR /&gt;&lt;BR /&gt;For erasing a tape, you can just redirect the null character to the tape. Or see this:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/0,,0xd741a22831ebd5118ff40090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/0,,0xd741a22831ebd5118ff40090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju</description>
      <pubDate>Mon, 07 Jan 2002 14:10:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640031#M43385</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-01-07T14:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640032#M43386</link>
      <description>Raghu,&lt;BR /&gt;&lt;BR /&gt;You can also erase a tape by using mediainit.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Mon, 07 Jan 2002 14:11:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640032#M43386</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-01-07T14:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640033#M43387</link>
      <description>Hi Raghu,&lt;BR /&gt;&lt;BR /&gt;There are 2 "files" written on a make_tape_recovery tape.  The first "file" is a boot image.  The second file is a tarfile written by the pax utility.  You can use pax or tar to see what is in that second file on the tape:&lt;BR /&gt;&lt;BR /&gt;mt -t /dev/rmt/0m rewind&lt;BR /&gt;mt -t /dev/rmt/0mn fsf 1&lt;BR /&gt;tar tvf /dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;If you need to physically erase the data then use a bulk eraser or overwrite the tape completely with zeros or other garbage (dd if=/dev/zero of=/dev/rmt/0m).&lt;BR /&gt;&lt;BR /&gt;You can find a number of threads by searching the itrc.  My favorite search is at &lt;A href="http://www.google.com/advanced_search." target="_blank"&gt;http://www.google.com/advanced_search.&lt;/A&gt;  Be sure to limit the domain to itrc.hp.com.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Mon, 07 Jan 2002 14:19:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640033#M43387</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-01-07T14:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640034#M43388</link>
      <description>No you can NOT check the status of a make_recovery tape with check_recovery.  That is NOT the purpose of check_recovery.&lt;BR /&gt;&lt;BR /&gt;From the man page for check_recovery:&lt;BR /&gt;&lt;BR /&gt;"check_recovery compares the current state of the system to the System Recovery status file (created by the last invocation of make_recovery) to determine if a new System Recovery Tape needs to be created.  Only&lt;BR /&gt;Core OS and User Core OS files are validated.  Refer to make_recovery for an explanation of these terms."&lt;BR /&gt;&lt;BR /&gt;"check_recovery displays all discrepancies found between the current system and the status file to stderr.  Based on these, the System&lt;BR /&gt;Administrator can then make a determination as to whether a new System Recovery Tape needs to be created."&lt;BR /&gt;&lt;BR /&gt;check_recovery is only valid is you use make_recovery with the -C option.&lt;BR /&gt;&lt;BR /&gt;Others have given you the instructions to see data on your make_recovery tape.&lt;BR /&gt;&lt;BR /&gt;To erase data on the tape, just reuse the tape.  Once you reuse the tape, the make_recovery image will no longer be accessable.</description>
      <pubDate>Mon, 07 Jan 2002 15:00:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640034#M43388</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2002-01-07T15:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640035#M43389</link>
      <description>I am confused now. My problem is I installed a Sue Store Disk system on my HP 9000 K-class server. With 4 16 GB HD on it . My server only had total of 25GB HD space with one volume Group ??? vg00( 2X8 GB and 2X4 GB). When I talk to Hp regarding to convert the file system so I will be able to us the new HD. They advised me to create a recovery tape using Ignite. Then I can boot the system from the recovery tape and I will be able to configure my new HD as the primary boot device and will be able to add all the 8 HD s ( the new 4HDs amd the old 4HDs) to one volume group ???vg00??? . When I create the recovery tape and tried to boot the system from the tape, I am getting this message???&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;boot P2&lt;BR /&gt;&lt;BR /&gt;Intract with IPL ( Y, N, or Cancel)?&amp;gt; n&lt;BR /&gt;&lt;BR /&gt;Booting ....&lt;BR /&gt;Boot IO Dependent Code (IODC) rvision 1&lt;BR /&gt;&lt;BR /&gt;HARD Booted.&lt;BR /&gt;&lt;BR /&gt;ISL Revision A.00.43 Apr 12, 2000&lt;BR /&gt;&lt;BR /&gt;ISL booting hpux (;0):INSTALL&lt;BR /&gt;&lt;BR /&gt;Boot&lt;BR /&gt;&lt;BR /&gt;: tape (0/5/0/0.6.0.0.0.0.0;0):winstall &lt;BR /&gt;tape (0/5/0/0.6.0.0.0.0.0;0):winstall  cannot open, or not executable&lt;BR /&gt;Exec failed: No such file or directory&lt;BR /&gt;&lt;BR /&gt;I don???t know what is the problem  is. I also would like to know what are the  right option I need to use. Like C or c , v ,I, I check the man page but that is too confusing. Could some one give me the right option I must use ???  make _tape _recovery  -c C v I  ??? what is the right one</description>
      <pubDate>Mon, 07 Jan 2002 15:16:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640035#M43389</guid>
      <dc:creator>Raghuram Ollakal_1</dc:creator>
      <dc:date>2002-01-07T15:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640036#M43390</link>
      <description>Hi Raghuram,&lt;BR /&gt;&lt;BR /&gt;You seem as you had ommited the "no rewind" device file from your make_recovery !&lt;BR /&gt;&lt;BR /&gt;Boot again on disk and issue the following command :&lt;BR /&gt;&lt;BR /&gt;# make_recovery -A -d /dev/rmt/0mn&lt;BR /&gt;&lt;BR /&gt;Attention to the last character "n" in the device file name. This will put first the lif area in the begining of the tape followed by the entire vg00 files ( this is option -A in the command ) which are /etc, /sbin, /usr and so on ...&lt;BR /&gt;&lt;BR /&gt;Magdi</description>
      <pubDate>Mon, 07 Jan 2002 16:25:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640036#M43390</guid>
      <dc:creator>Magdi KAMAL</dc:creator>
      <dc:date>2002-01-07T16:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640037#M43391</link>
      <description>If you want to use make_tape_recovery instead, which I recommend, here is the command I use:&lt;BR /&gt;&lt;BR /&gt;/opt/ignite/bin/make_tape_recovery -a /dev/rmt/0mn -I -v -x inc_entire=vg00</description>
      <pubDate>Mon, 07 Jan 2002 16:29:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640037#M43391</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2002-01-07T16:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640038#M43392</link>
      <description>Hello Raghu,&lt;BR /&gt;&lt;BR /&gt;it seems your tape is bad (not the drive).&lt;BR /&gt;Usually it is safer to create two "ignite-tapes", before doing something destructive...&lt;BR /&gt;So, after having created that tape, I would take it to another driver (even system), and try to read it over there:&lt;BR /&gt;&lt;BR /&gt;mt -t /dev/rmt/0mn rewind # just to be ceratin&lt;BR /&gt;mt -t /dev/rmt/0mn fsf 1  # skip the boot header&lt;BR /&gt;tar tvf /dev/rmt/0m       # read the depot from tape&lt;BR /&gt;&lt;BR /&gt;Does it show *ALL* the files which where backed up?&lt;BR /&gt;Any errors?&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Wodisch</description>
      <pubDate>Mon, 07 Jan 2002 16:29:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640038#M43392</guid>
      <dc:creator>Wodisch</dc:creator>
      <dc:date>2002-01-07T16:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640039#M43393</link>
      <description>If you are confused try make_tape_recovery interactively. This is from make_tape_recovery man pages:&lt;BR /&gt;-i   Causes make_tape_recovery to run interactively to allow you &lt;BR /&gt;                to select which files and directories are to be included in&lt;BR /&gt;                the recovery archive. The options -x , -A and -f are not&lt;BR /&gt;                allowed with -i. It is preferable to use the ignite GUI menu&lt;BR /&gt;                command on the Ignite-UX server when running an interactive&lt;BR /&gt;                make_tape_recovery session.  Running it from ignite causes&lt;BR /&gt;                any additional server configuration of NFS mounts to be&lt;BR /&gt;                performed.  It also provides a better progress report and an&lt;BR /&gt;                easier to use interface.</description>
      <pubDate>Mon, 07 Jan 2002 16:41:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640039#M43393</guid>
      <dc:creator>T. M. Louah</dc:creator>
      <dc:date>2002-01-07T16:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640040#M43394</link>
      <description>sorry --&amp;gt;&lt;BR /&gt;..try  # make_tape_recovery -i&lt;BR /&gt;&lt;BR /&gt;To list all tape content:  &lt;BR /&gt;.. pax -rv -f /dev/rmt/0m &lt;BR /&gt;&lt;BR /&gt;g'd luck &lt;BR /&gt;t++&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Jan 2002 16:49:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640040#M43394</guid>
      <dc:creator>T. M. Louah</dc:creator>
      <dc:date>2002-01-07T16:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640041#M43395</link>
      <description>Look at this thread:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x2196663ce855d511abcd0090277a778c,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x2196663ce855d511abcd0090277a778c,00.html&lt;/A&gt;&lt;BR /&gt;Notice Tim Fulford's method for checking the contents of the boot image on the tape.&lt;BR /&gt;&lt;BR /&gt;If you see WINSTALL then try interacting with IPL and specifying:&lt;BR /&gt;hpux (;0):WINSTALL&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Mon, 07 Jan 2002 17:04:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640041#M43395</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-01-07T17:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to view/erase data from the tape</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640042#M43396</link>
      <description>Hi Reghu,&lt;BR /&gt;&lt;BR /&gt;I would suggest to do this:&lt;BR /&gt;&lt;BR /&gt;# make_recovery -A -C -d /dev/rmt/0mn&lt;BR /&gt;&lt;BR /&gt;-A will backup the entire root volume group.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju</description>
      <pubDate>Mon, 07 Jan 2002 17:06:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-view-erase-data-from-the-tape/m-p/2640042#M43396</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-01-07T17:06:17Z</dc:date>
    </item>
  </channel>
</rss>

