<?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: Root disk change in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/root-disk-change/m-p/3169016#M160971</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you had the cables connected to the system then it should have imported even vg01.&lt;BR /&gt;&lt;BR /&gt;If there is only one disk, it's not difficult to import vg01. Since you restored the same OS, you may have good mapfiles under /etc/lvmconf directory. Look for /etc/lvmconf/vg01.mapfile If you have it then do&lt;BR /&gt;&lt;BR /&gt;#mkdir /dev/vg01&lt;BR /&gt;#mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;#vgimport -v -m /etc/lvmconf/vg01.mapfile /dev/vg01 /dev/dsk/cxtydz&lt;BR /&gt;#vgchange -a y vg01&lt;BR /&gt;#mount -a&lt;BR /&gt;&lt;BR /&gt;If you don't have the mapfile, then use&lt;BR /&gt;&lt;BR /&gt;#vgimport -v vg01 /dev/dsk/cxtydz&lt;BR /&gt;&lt;BR /&gt;It will create logical volumes with the default names in /dev/vg01 directory. Do a 'vgchange -a y vg01' and mount each logical volume to see which filesystem it belongs to.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 20 Jan 2004 16:19:31 GMT</pubDate>
    <dc:creator>Sridhar Bhaskarla</dc:creator>
    <dc:date>2004-01-20T16:19:31Z</dc:date>
    <item>
      <title>Root disk change</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-disk-change/m-p/3169014#M160969</link>
      <description>Hi,&lt;BR /&gt;i have just replaced root disk using make_tape_recovery -x inc_entire=vg00. It worked, but i have other disk with volume group vg01. This volume group doesn't exist in new system. How to fix it?</description>
      <pubDate>Tue, 20 Jan 2004 16:09:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-disk-change/m-p/3169014#M160969</guid>
      <dc:creator>Irek_1</dc:creator>
      <dc:date>2004-01-20T16:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: Root disk change</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-disk-change/m-p/3169015#M160970</link>
      <description>&lt;BR /&gt;First, make sure it really isn't there:&lt;BR /&gt;# vgchange -a y vg01&lt;BR /&gt;If that fails, see if /dev/vg01 exists.&lt;BR /&gt;If not, do:&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vg01&lt;BR /&gt;mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;&lt;BR /&gt;At this point, see if you have a vg01 mapfile in /etc/lvmconf.&lt;BR /&gt;If so, do:&lt;BR /&gt;&lt;BR /&gt;vgimport -m /etc/lvmconf/vg01.mapfile vg01&lt;BR /&gt;&lt;BR /&gt;If you have no mapfile, perform a vgscan.&lt;BR /&gt;It will alert you to the disk or disks that are part of a&lt;BR /&gt;voume group that doesn't exist right now.&lt;BR /&gt;In that case, try:&lt;BR /&gt;&lt;BR /&gt;vgimport vg01 /dev/dsk/cXtXdX /dev/dsk/cXtXdX ...etc...&lt;BR /&gt;substituting the correct orphaned disks shown in the vgscan.&lt;BR /&gt;&lt;BR /&gt;Then do:&lt;BR /&gt;&lt;BR /&gt;vgchange -a y vg01&lt;BR /&gt;mount -a&lt;BR /&gt;(Or, if the entries aren't in the /etc/fstab, add them)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Jan 2004 16:16:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-disk-change/m-p/3169015#M160970</guid>
      <dc:creator>Chris Watkins_1</dc:creator>
      <dc:date>2004-01-20T16:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Root disk change</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-disk-change/m-p/3169016#M160971</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you had the cables connected to the system then it should have imported even vg01.&lt;BR /&gt;&lt;BR /&gt;If there is only one disk, it's not difficult to import vg01. Since you restored the same OS, you may have good mapfiles under /etc/lvmconf directory. Look for /etc/lvmconf/vg01.mapfile If you have it then do&lt;BR /&gt;&lt;BR /&gt;#mkdir /dev/vg01&lt;BR /&gt;#mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;#vgimport -v -m /etc/lvmconf/vg01.mapfile /dev/vg01 /dev/dsk/cxtydz&lt;BR /&gt;#vgchange -a y vg01&lt;BR /&gt;#mount -a&lt;BR /&gt;&lt;BR /&gt;If you don't have the mapfile, then use&lt;BR /&gt;&lt;BR /&gt;#vgimport -v vg01 /dev/dsk/cxtydz&lt;BR /&gt;&lt;BR /&gt;It will create logical volumes with the default names in /dev/vg01 directory. Do a 'vgchange -a y vg01' and mount each logical volume to see which filesystem it belongs to.&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Jan 2004 16:19:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-disk-change/m-p/3169016#M160971</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2004-01-20T16:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: Root disk change</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/root-disk-change/m-p/3169017#M160972</link>
      <description>It worked! Thanx for all!&lt;BR /&gt;Irek</description>
      <pubDate>Tue, 20 Jan 2004 16:57:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/root-disk-change/m-p/3169017#M160972</guid>
      <dc:creator>Irek_1</dc:creator>
      <dc:date>2004-01-20T16:57:25Z</dc:date>
    </item>
  </channel>
</rss>

