<?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: A question about Create VG. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/a-question-about-create-vg/m-p/2977057#M632145</link>
    <description>hi,&lt;BR /&gt;&lt;BR /&gt;was the command vgcreate successful.&lt;BR /&gt;&lt;BR /&gt;i mean, did u create the /dev/vg01 directory, group file and then use vgcreate to create the vg. &lt;BR /&gt;&lt;BR /&gt;in case your lvmtab is corrupted, this error might occur as well. in that case,&lt;BR /&gt;&lt;BR /&gt;1. mv /etc/lvmtab /etc/lvmtab.orig.&lt;BR /&gt;&lt;BR /&gt;2. vgscan -v -a -p (preview mode)&lt;BR /&gt;&lt;BR /&gt;3. vgscan -a -v (to recreate lvmtab)&lt;BR /&gt;&lt;BR /&gt;but i will do this only if doubt that my lvmtab is corrupted. &lt;BR /&gt;&lt;BR /&gt;-balaji&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 20 May 2003 07:37:51 GMT</pubDate>
    <dc:creator>Balaji N</dc:creator>
    <dc:date>2003-05-20T07:37:51Z</dc:date>
    <item>
      <title>A question about Create VG.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/a-question-about-create-vg/m-p/2977056#M632144</link>
      <description>I have already created a VG 'vg01'&lt;BR /&gt;by command " #vgcreate /dev/vg01 /dev/dsk/c3t5d0 ".&lt;BR /&gt;But I can't use vgdisplay to view the VG status.&lt;BR /&gt;When I type 'vgdisplay vg01' it saids 'Volumn Group "/dev/vg01" does not exist in the "/etc/lvmtab" file'.&lt;BR /&gt;Why? How to do?</description>
      <pubDate>Tue, 20 May 2003 07:33:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/a-question-about-create-vg/m-p/2977056#M632144</guid>
      <dc:creator>chixy_1</dc:creator>
      <dc:date>2003-05-20T07:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: A question about Create VG.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/a-question-about-create-vg/m-p/2977057#M632145</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;was the command vgcreate successful.&lt;BR /&gt;&lt;BR /&gt;i mean, did u create the /dev/vg01 directory, group file and then use vgcreate to create the vg. &lt;BR /&gt;&lt;BR /&gt;in case your lvmtab is corrupted, this error might occur as well. in that case,&lt;BR /&gt;&lt;BR /&gt;1. mv /etc/lvmtab /etc/lvmtab.orig.&lt;BR /&gt;&lt;BR /&gt;2. vgscan -v -a -p (preview mode)&lt;BR /&gt;&lt;BR /&gt;3. vgscan -a -v (to recreate lvmtab)&lt;BR /&gt;&lt;BR /&gt;but i will do this only if doubt that my lvmtab is corrupted. &lt;BR /&gt;&lt;BR /&gt;-balaji&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 May 2003 07:37:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/a-question-about-create-vg/m-p/2977057#M632145</guid>
      <dc:creator>Balaji N</dc:creator>
      <dc:date>2003-05-20T07:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: A question about Create VG.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/a-question-about-create-vg/m-p/2977058#M632146</link>
      <description>Before you try to create a volume group, you must create a major device for the group.&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;# pvcreate /dev/rdsk/c3t5d0&lt;BR /&gt;# mkdir /dev/myvg&lt;BR /&gt;# mknod /dev/myvg/group c 64 0x020000&lt;BR /&gt;# vgcreate /dev/myvg /dev/dsk/c3t5d0&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Michael&lt;BR /&gt;"When I have trouble spelling, it's called fat finger syndrome."</description>
      <pubDate>Tue, 20 May 2003 08:03:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/a-question-about-create-vg/m-p/2977058#M632146</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2003-05-20T08:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: A question about Create VG.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/a-question-about-create-vg/m-p/2977059#M632147</link>
      <description>First check whether your /dev/vg01 dir exist!&lt;BR /&gt;&lt;BR /&gt;If not you should follow the below steps in creating VG&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# mkdir /dev/vg01&lt;BR /&gt;# mknod /dev/vg01/group c 64 0x010000 &lt;BR /&gt;Make sure the minor number is unique 0x010000.&lt;BR /&gt;&lt;BR /&gt;you can do a &lt;BR /&gt;#ll /dev/vg*/group &lt;BR /&gt;to make sure it is unique.&lt;BR /&gt;&lt;BR /&gt;#vgcreate /dev/vg01 /dev/dsk/c3t5d0 &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 May 2003 08:03:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/a-question-about-create-vg/m-p/2977059#M632147</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2003-05-20T08:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: A question about Create VG.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/a-question-about-create-vg/m-p/2977060#M632148</link>
      <description>I've resolved the problem by recreate lvmtab.&lt;BR /&gt;Thank you.</description>
      <pubDate>Tue, 20 May 2003 08:12:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/a-question-about-create-vg/m-p/2977060#M632148</guid>
      <dc:creator>chixy_1</dc:creator>
      <dc:date>2003-05-20T08:12:19Z</dc:date>
    </item>
  </channel>
</rss>

