<?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: given /dev/vg00 find /dev/rdsk/c0X in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681622#M908600</link>
    <description>Hi Leon,&lt;BR /&gt;This is very simple.&lt;BR /&gt;&lt;BR /&gt;Just give the following command at the root prompt.&lt;BR /&gt;&lt;BR /&gt;#vgdisplay -v /dev/vg00 | grep "PV Name"&lt;BR /&gt;&lt;BR /&gt;This will list all the physical disks belong to the vg00. &lt;BR /&gt;The command in " " sign is case sensitive.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;-Piyush.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 12 Mar 2002 20:52:31 GMT</pubDate>
    <dc:creator>pap</dc:creator>
    <dc:date>2002-03-12T20:52:31Z</dc:date>
    <item>
      <title>given /dev/vg00 find /dev/rdsk/c0X</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681617#M908595</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If I have the following information:&lt;BR /&gt;/dev/vg00, how can I find out disk that this vg belongs to?&lt;BR /&gt;&lt;BR /&gt;Thank you!</description>
      <pubDate>Tue, 12 Mar 2002 20:38:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681617#M908595</guid>
      <dc:creator>andi_1</dc:creator>
      <dc:date>2002-03-12T20:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: given /dev/vg00 find /dev/rdsk/c0X</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681618#M908596</link>
      <description>DO a vgdisplay -v /dev/vg00 and look at the bottom of the output it should give you the physical volumes..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH</description>
      <pubDate>Tue, 12 Mar 2002 20:40:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681618#M908596</guid>
      <dc:creator>D. Jackson_1</dc:creator>
      <dc:date>2002-03-12T20:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: given /dev/vg00 find /dev/rdsk/c0X</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681619#M908597</link>
      <description>Actually, the question should be stated "what disks belong to the VG". As noted by D. Jackson, vgdisplay will do it for ya.&lt;BR /&gt;&lt;BR /&gt;To find out what VG a disk belongs to use, pvdisplay.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Tue, 12 Mar 2002 20:42:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681619#M908597</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-03-12T20:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: given /dev/vg00 find /dev/rdsk/c0X</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681620#M908598</link>
      <description>"vgdisplay -v /dev/vg00" will list the logical volumes and the disks (physical volumes) in that volume group.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Tue, 12 Mar 2002 20:44:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681620#M908598</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-03-12T20:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: given /dev/vg00 find /dev/rdsk/c0X</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681621#M908599</link>
      <description>for i in `ls /dev/vg*`&lt;BR /&gt;  do&lt;BR /&gt;    vgdisplay -v $i | tail -20&lt;BR /&gt;  done&lt;BR /&gt;&lt;BR /&gt;Should be quick and easy&lt;BR /&gt;&lt;BR /&gt;GL,&lt;BR /&gt;C</description>
      <pubDate>Tue, 12 Mar 2002 20:46:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681621#M908599</guid>
      <dc:creator>Craig Rants</dc:creator>
      <dc:date>2002-03-12T20:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: given /dev/vg00 find /dev/rdsk/c0X</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681622#M908600</link>
      <description>Hi Leon,&lt;BR /&gt;This is very simple.&lt;BR /&gt;&lt;BR /&gt;Just give the following command at the root prompt.&lt;BR /&gt;&lt;BR /&gt;#vgdisplay -v /dev/vg00 | grep "PV Name"&lt;BR /&gt;&lt;BR /&gt;This will list all the physical disks belong to the vg00. &lt;BR /&gt;The command in " " sign is case sensitive.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;-Piyush.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Mar 2002 20:52:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681622#M908600</guid>
      <dc:creator>pap</dc:creator>
      <dc:date>2002-03-12T20:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: given /dev/vg00 find /dev/rdsk/c0X</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681623#M908601</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Or as an alternative, run the following:&lt;BR /&gt;&lt;BR /&gt;                                      &lt;BR /&gt;dmc19:/roothome# strings /etc/lvmtab  &lt;BR /&gt;/dev/vg00                             &lt;BR /&gt;/dev/dsk/c1t6d0                       &lt;BR /&gt;/dev/STK01                            &lt;BR /&gt;/dev/dsk/c5t0d0                       &lt;BR /&gt;/dev/STK02                            &lt;BR /&gt;/dev/dsk/c6t1d1                       &lt;BR /&gt;/dev/vg01                             &lt;BR /&gt;/dev/dsk/c2t6d0                       &lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;Chris&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Mar 2002 20:53:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/given-dev-vg00-find-dev-rdsk-c0x/m-p/2681623#M908601</guid>
      <dc:creator>Christopher McCray_1</dc:creator>
      <dc:date>2002-03-12T20:53:05Z</dc:date>
    </item>
  </channel>
</rss>

