<?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 Recover Data from Hard Disk in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769832#M261009</link>
    <description>I had to replace a second drive on a B3600 because the customer wanted a larger drive (18Gb to 72.8Gb) The replaced drive only had a single partition (lvol13). I attempted to tar the data but when I went to restore from the tar file, it stopped with a bad block error.  How can I retrieve the data from the removed disk?</description>
    <pubDate>Tue, 11 Apr 2006 07:39:15 GMT</pubDate>
    <dc:creator>Raymond R Walsh Jr</dc:creator>
    <dc:date>2006-04-11T07:39:15Z</dc:date>
    <item>
      <title>Recover Data from Hard Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769832#M261009</link>
      <description>I had to replace a second drive on a B3600 because the customer wanted a larger drive (18Gb to 72.8Gb) The replaced drive only had a single partition (lvol13). I attempted to tar the data but when I went to restore from the tar file, it stopped with a bad block error.  How can I retrieve the data from the removed disk?</description>
      <pubDate>Tue, 11 Apr 2006 07:39:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769832#M261009</guid>
      <dc:creator>Raymond R Walsh Jr</dc:creator>
      <dc:date>2006-04-11T07:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Recover Data from Hard Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769833#M261010</link>
      <description>Raymond,&lt;BR /&gt;did you get any errors when you created the tar? I would install the removed disk and generate another tar/backup, ensuring nothing went wrong.&lt;BR /&gt;Then swap the new disk in and restore, after making sure the disk is ok.</description>
      <pubDate>Tue, 11 Apr 2006 09:17:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769833#M261010</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-04-11T09:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Recover Data from Hard Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769834#M261011</link>
      <description>Use cpio not to be limited to 2gigs files.&lt;BR /&gt;Reconnect the 18Gigs hard disk and be sure to have a good backup:&lt;BR /&gt;&lt;BR /&gt;mt -f [your_tape_device] rew&lt;BR /&gt;find /mount_point_of_lvol13 -cpio [your_tape_device]&lt;BR /&gt;&lt;BR /&gt;to restore:&lt;BR /&gt;cd /mount_point_of_lvol13 &amp;amp;&amp;amp; cpio -i &amp;lt; [your_tape_device]&lt;BR /&gt;&lt;BR /&gt;man cpio&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
      <pubDate>Tue, 11 Apr 2006 09:33:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769834#M261011</guid>
      <dc:creator>Tiziano Contorno _</dc:creator>
      <dc:date>2006-04-11T09:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: Recover Data from Hard Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769835#M261012</link>
      <description>Yes there was an error during the tar but it occurred late in the process but what was untarred was a smidgeon of what appeared to have been archived.  This is on a production system and I wanted to know if there is any way for me to be able to add the data disk to another B3600 and recover the data from there.  In the original system&lt;BR /&gt;there was a single VG and the partition represented by this data disk was lvol13.&lt;BR /&gt;HPUX11.0 is the OS.</description>
      <pubDate>Tue, 11 Apr 2006 13:02:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769835#M261012</guid>
      <dc:creator>Raymond R Walsh Jr</dc:creator>
      <dc:date>2006-04-11T13:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Recover Data from Hard Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769836#M261013</link>
      <description>mv /etc/lvmtab /etc/lvmtab.pre&lt;BR /&gt;mkdir /dev/source_workstation_vg_name # use the same vg name that was on the source workstation&lt;BR /&gt;mknod /dev/source_workstation_vg_name/group c 64 0xNN0000 # use the same minor number of the source workstation&lt;BR /&gt;insert disk from old workstation&lt;BR /&gt;ioscan -fnC disk&lt;BR /&gt;insf -C disk&lt;BR /&gt;vgscan -pv&lt;BR /&gt;&lt;BR /&gt;1) if output of the vgscan above is good&lt;BR /&gt;vgscan -v&lt;BR /&gt;vgchange -a y old_workstation_vg_name&lt;BR /&gt;mount /dev/source_workstation_vg_name/lvol13 /wherever&lt;BR /&gt;&lt;BR /&gt;2) if output is not good&lt;BR /&gt;mv /etc/lvmtab.pre /etc/lvmtab&lt;BR /&gt;report here what went wrong&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
      <pubDate>Tue, 11 Apr 2006 14:35:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769836#M261013</guid>
      <dc:creator>Tiziano Contorno _</dc:creator>
      <dc:date>2006-04-11T14:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Recover Data from Hard Disk</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769837#M261014</link>
      <description>Hi Raymond,&lt;BR /&gt;&lt;BR /&gt;It could be possible, depends a bit on how you removed (commands used)the disk from the original C3600. You could try below commands on a your spare workstation.&lt;BR /&gt;&lt;BR /&gt;shutdown your spare WS, add the disk and boot the system, run "ioscan -fnCdisk" and note the added disk device file "/dev/dsk/cxtydz"&lt;BR /&gt;&lt;BR /&gt;# ll /dev/*/group&lt;BR /&gt;crw-r----- 1 root sys 64 0x000000 Jun 29 01:34 /dev/vg00/group&lt;BR /&gt;note the vg number and minor number used on your WS volume group.&lt;BR /&gt;# mkdir /dev/vg01&lt;BR /&gt;# mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;# vgimport vg01 /dev/dsk/cxtydz&lt;BR /&gt;use the device file from your ioscan command.&lt;BR /&gt;# vgchange -a y vg01&lt;BR /&gt;# vgcfgbackup vg01&lt;BR /&gt;# vgdisplay -v vg01&lt;BR /&gt;# mkdir /mnt&lt;BR /&gt;# mount /dev/vg01/lvol1 /mnt&lt;BR /&gt;&lt;BR /&gt;Check if you have access to your data.&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;obert-Jan</description>
      <pubDate>Tue, 11 Apr 2006 14:58:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/recover-data-from-hard-disk/m-p/3769837#M261014</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2006-04-11T14:58:32Z</dc:date>
    </item>
  </channel>
</rss>

