<?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: vgcreate in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808342#M780463</link>
    <description>By default minor no. for vg can be between 00-09, ie max 10 vgs can be created. If there are already 10 vgs created and this is the next one then you have to change the maxvgs and then recreate vg. &lt;BR /&gt;Else check for the existing minor no.'s using ll /dev/vg*/group&lt;BR /&gt;&lt;BR /&gt;then use minor no. which is currently not in use....&lt;BR /&gt;&lt;BR /&gt;HTH</description>
    <pubDate>Thu, 29 Jun 2006 03:14:31 GMT</pubDate>
    <dc:creator>Mridul Shrivastava</dc:creator>
    <dc:date>2006-06-29T03:14:31Z</dc:date>
    <item>
      <title>vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808336#M780457</link>
      <description># vgcreate vgu10 /dev/dsk/c14t1d4&lt;BR /&gt;vgcreate: Cannot open the control file "/dev/vgu10/group":&lt;BR /&gt;Device busy&lt;BR /&gt;#&lt;BR /&gt;How can I fix this problem?</description>
      <pubDate>Mon, 19 Jun 2006 21:46:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808336#M780457</guid>
      <dc:creator>jamshed</dc:creator>
      <dc:date>2006-06-19T21:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808337#M780458</link>
      <description>Hello Jamshed,&lt;BR /&gt;&lt;BR /&gt;Check the following&lt;BR /&gt;&lt;BR /&gt;# ll /dev/vgu10&lt;BR /&gt;&lt;BR /&gt;See if you find a file called "group", else you need to do the following&lt;BR /&gt;&lt;BR /&gt;# ll /dev/*/group (to find out the minor numbers used)&lt;BR /&gt;example&lt;BR /&gt;0x020000 --&amp;gt; here the minor number is 02&lt;BR /&gt;0x010000 --&amp;gt; here the minor number is 01&lt;BR /&gt;&lt;BR /&gt;# mkdir /dev/vgu10&lt;BR /&gt;# mknod /dev/vgu10/group c 64 0xYY0000&lt;BR /&gt;Replace YY with the minor number you want to assign to the volume.&lt;BR /&gt;# vgcreate /dev/vgu10 /dev/dsk/c14t1d4&lt;BR /&gt;should work.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;albert</description>
      <pubDate>Mon, 19 Jun 2006 21:54:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808337#M780458</guid>
      <dc:creator>Albert_31</dc:creator>
      <dc:date>2006-06-19T21:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808338#M780459</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;# kmtune -l -q maxvgs&lt;BR /&gt;&lt;BR /&gt;the default max number of VG is 10, need to change the paramter and rebuild the kernel if you already have 10 VGs.&lt;BR /&gt;&lt;BR /&gt;GOOD LUCK!!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Jun 2006 22:09:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808338#M780459</guid>
      <dc:creator>Warren_9</dc:creator>
      <dc:date>2006-06-19T22:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808339#M780460</link>
      <description>Thank you Albert!</description>
      <pubDate>Mon, 19 Jun 2006 22:11:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808339#M780460</guid>
      <dc:creator>jamshed</dc:creator>
      <dc:date>2006-06-19T22:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808340#M780461</link>
      <description>Almost certainly the /dev/vgu10/group device node that you (presumably) created does not have a unique (to this host) minor device number. Do an "ls -l /dev/vg*/group" and note the minor device numbers currently in use. You then create a device node that does not conflict with any existing device nodes. &lt;BR /&gt;&lt;BR /&gt;By convention (though certainly not required) vg10 would use major 64 monir 0x0a0000&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vg10&lt;BR /&gt;mknod /dev/vg10/greoup c 64 0x0a0000&lt;BR /&gt;&lt;BR /&gt;Now you should be ready to vgcreate (assuming that 0x0a0000 is truly unique).&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Jun 2006 22:13:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808340#M780461</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-06-19T22:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808341#M780462</link>
      <description>Hi,&lt;BR /&gt;I think you already used group minor number 10. Check othr group's group minor number.</description>
      <pubDate>Thu, 29 Jun 2006 02:41:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808341#M780462</guid>
      <dc:creator>jjh_1</dc:creator>
      <dc:date>2006-06-29T02:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808342#M780463</link>
      <description>By default minor no. for vg can be between 00-09, ie max 10 vgs can be created. If there are already 10 vgs created and this is the next one then you have to change the maxvgs and then recreate vg. &lt;BR /&gt;Else check for the existing minor no.'s using ll /dev/vg*/group&lt;BR /&gt;&lt;BR /&gt;then use minor no. which is currently not in use....&lt;BR /&gt;&lt;BR /&gt;HTH</description>
      <pubDate>Thu, 29 Jun 2006 03:14:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3808342#M780463</guid>
      <dc:creator>Mridul Shrivastava</dc:creator>
      <dc:date>2006-06-29T03:14:31Z</dc:date>
    </item>
  </channel>
</rss>

