<?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/3622929#M236237</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Either minor number is not unique or the group file is not created itself. Is it ?&lt;BR /&gt;&lt;BR /&gt;#mkdir /dev/vg05&lt;BR /&gt;#mknod /dev/vg05/group c 64 0x??0000&lt;BR /&gt;&lt;BR /&gt;( Where ?? is the unique number confirm by "ll /dev/*/group", normally should be 05 for vg05 if the sequence has been maintained earlier)&lt;BR /&gt;&lt;BR /&gt;#vgcreate /dev/vg05 /dev/dsk/c10t4d3&lt;BR /&gt;&lt;BR /&gt;(Also note the typo in the device file name)&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Devender</description>
    <pubDate>Fri, 09 Sep 2005 23:30:31 GMT</pubDate>
    <dc:creator>Devender Khatana</dc:creator>
    <dc:date>2005-09-09T23:30:31Z</dc:date>
    <item>
      <title>vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622927#M236235</link>
      <description>HI, I need you help,&lt;BR /&gt;whene I do "vgcreate /dev/vg05 /dev/dsk/x10t4d3" return the message "Cannot the open file /dev/vg05/group" and if exist.&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Sep 2005 21:19:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622927#M236235</guid>
      <dc:creator>tigm7103105q1</dc:creator>
      <dc:date>2005-09-09T21:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622928#M236236</link>
      <description>Is the minor number unique?&lt;BR /&gt;&lt;BR /&gt;ll /dev/vg*/group&lt;BR /&gt;&lt;BR /&gt;Make sure none are the same.&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Fri, 09 Sep 2005 21:28:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622928#M236236</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2005-09-09T21:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622929#M236237</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Either minor number is not unique or the group file is not created itself. Is it ?&lt;BR /&gt;&lt;BR /&gt;#mkdir /dev/vg05&lt;BR /&gt;#mknod /dev/vg05/group c 64 0x??0000&lt;BR /&gt;&lt;BR /&gt;( Where ?? is the unique number confirm by "ll /dev/*/group", normally should be 05 for vg05 if the sequence has been maintained earlier)&lt;BR /&gt;&lt;BR /&gt;#vgcreate /dev/vg05 /dev/dsk/c10t4d3&lt;BR /&gt;&lt;BR /&gt;(Also note the typo in the device file name)&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Devender</description>
      <pubDate>Fri, 09 Sep 2005 23:30:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622929#M236237</guid>
      <dc:creator>Devender Khatana</dc:creator>
      <dc:date>2005-09-09T23:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622930#M236238</link>
      <description>To elaborate, the minor number should be hex...&lt;BR /&gt;&lt;BR /&gt;So vg05, minor 05&lt;BR /&gt;vg10, minor 0a&lt;BR /&gt;etc...&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 10 Sep 2005 01:24:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622930#M236238</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2005-09-10T01:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622931#M236239</link>
      <description>Hi Tigm ,&lt;BR /&gt;&lt;BR /&gt;It seems you have not created the group file hence the error . &lt;BR /&gt;&lt;BR /&gt;You can do as following:&lt;BR /&gt;&lt;BR /&gt;1. Create the new vg directory.&lt;BR /&gt;# cd /dev&lt;BR /&gt;# mkdir vg05&lt;BR /&gt;&lt;BR /&gt;2. Create the unique group file&lt;BR /&gt;# ls -l /dev/*/group [ to check all the group files ]&lt;BR /&gt;# mknod group c 64 0x050000 &lt;BR /&gt;[ 0x050000 has to be unique , 0x0N0000 (replace N with unque number).&lt;BR /&gt;&lt;BR /&gt;3. vgcreate /dev/vg05 /dev/dsk/x10t4d3&lt;BR /&gt;&lt;BR /&gt;4. vgdisplay -v /dev/vg05 | more &lt;BR /&gt;&lt;BR /&gt;Cheers ,&lt;BR /&gt;Raj.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 10 Sep 2005 01:49:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622931#M236239</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-10T01:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622932#M236240</link>
      <description>Need to create the group file under /dev/vg05  I missed that. &lt;BR /&gt;( # cd /dev/vg05/ )&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.</description>
      <pubDate>Sat, 10 Sep 2005 01:54:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622932#M236240</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-10T01:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622933#M236241</link>
      <description>Hi,&lt;BR /&gt;The kernel parameter maxvgs also affects the group file minor number! By default the maxvgs is set to 10. If so your group file's minor number shouldn't exceed 10 (0a - in hex).&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;TT</description>
      <pubDate>Sun, 11 Sep 2005 01:44:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622933#M236241</guid>
      <dc:creator>Thayanidhi</dc:creator>
      <dc:date>2005-09-11T01:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622934#M236242</link>
      <description>Hi There,&lt;BR /&gt;&lt;BR /&gt;There are couple of things u need to check.&lt;BR /&gt;&lt;BR /&gt;1. ll /dev/vg*/group and check whether the number u have selected is unique.&lt;BR /&gt;&lt;BR /&gt;2. If you have not created the group file please complete the same first with &lt;BR /&gt;#mkdir /dev/vg05&lt;BR /&gt;#mknod /dev/vg05/group c 64 0x##0000. The ## number can be selected after verifying the output of ll /dev/vg*/group .&lt;BR /&gt;&lt;BR /&gt;3. After this u can execute the vgcreate command.&lt;BR /&gt;&lt;BR /&gt;If the error repeates, need to check the maxvgs kernel parametre.&lt;BR /&gt;&lt;BR /&gt;cheers&lt;BR /&gt;&lt;BR /&gt;manu&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 11 Sep 2005 21:35:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate/m-p/3622934#M236242</guid>
      <dc:creator>Manoj Sivan</dc:creator>
      <dc:date>2005-09-11T21:35:57Z</dc:date>
    </item>
  </channel>
</rss>

