<?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: mknod in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/mknod/m-p/3602476#M618754</link>
    <description>h is not hexadecimal (base 16 uses digits 0-9,a-f).&lt;BR /&gt;&lt;BR /&gt;The next number you will use will be 0x100000.&lt;BR /&gt;&lt;BR /&gt;bear in mind you may also need to check your kernel maxvgs parameter, if this doesn't work - it defines the maximum number of volume groups the server can have.&lt;BR /&gt;&lt;BR /&gt;kmtune | grep maxvgs</description>
    <pubDate>Fri, 12 Aug 2005 03:53:18 GMT</pubDate>
    <dc:creator>Simon Hargrave</dc:creator>
    <dc:date>2005-08-12T03:53:18Z</dc:date>
    <item>
      <title>mknod</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mknod/m-p/3602475#M618753</link>
      <description>HI..&lt;BR /&gt;&lt;BR /&gt;we are creating one VG on a new virtual disk..&lt;BR /&gt;But while creating group file we getting following error..&lt;BR /&gt;up to 0x0f0000 minor nos are in use.      &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# mknod group c 64 0x0h0000&lt;BR /&gt;mknod: illegal number&lt;BR /&gt;usage: mknod name b|c major minor&lt;BR /&gt;       mknod name p&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;waiting for immidiate reply...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanx in adv &lt;BR /&gt;&lt;BR /&gt;Yogesh&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Aug 2005 03:45:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mknod/m-p/3602475#M618753</guid>
      <dc:creator>YOGI_3</dc:creator>
      <dc:date>2005-08-12T03:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: mknod</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mknod/m-p/3602476#M618754</link>
      <description>h is not hexadecimal (base 16 uses digits 0-9,a-f).&lt;BR /&gt;&lt;BR /&gt;The next number you will use will be 0x100000.&lt;BR /&gt;&lt;BR /&gt;bear in mind you may also need to check your kernel maxvgs parameter, if this doesn't work - it defines the maximum number of volume groups the server can have.&lt;BR /&gt;&lt;BR /&gt;kmtune | grep maxvgs</description>
      <pubDate>Fri, 12 Aug 2005 03:53:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mknod/m-p/3602476#M618754</guid>
      <dc:creator>Simon Hargrave</dc:creator>
      <dc:date>2005-08-12T03:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: mknod</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mknod/m-p/3602477#M618755</link>
      <description>Hi yogesh&lt;BR /&gt;&lt;BR /&gt;Firsh check what all minor numbers are exisitng  for the group files by&lt;BR /&gt;&lt;BR /&gt;ll /dev/vg*/group|awk '{print $6,$10}'|sort -n&lt;BR /&gt;&lt;BR /&gt;Then  mknod /dev/&lt;VGNAME&gt;/group c 64 &lt;MINOR number=""&gt;&lt;BR /&gt;&lt;BR /&gt;Make sure the minor number is a hexadecimel number..&lt;BR /&gt;&lt;BR /&gt;For eg:&lt;BR /&gt;0x000000 &lt;BR /&gt;0x030000 &lt;BR /&gt;0x060000 &lt;BR /&gt;0x070000 &lt;BR /&gt;0x080000 &lt;BR /&gt;0x0a0000 &lt;BR /&gt;0x0c0000 &lt;BR /&gt;0x0e0000 &lt;BR /&gt;0x0f0000 &lt;BR /&gt;0x120000 &lt;BR /&gt;0x150000 &lt;BR /&gt;0x160000 &lt;BR /&gt;0x170000 &lt;BR /&gt;0x180000 &lt;BR /&gt;0x190000 &lt;BR /&gt;0x1a0000 &lt;BR /&gt;0x200000 &lt;BR /&gt;0x210000 &lt;BR /&gt;0x220000 &lt;BR /&gt;0x230000 &lt;BR /&gt;0x800000 &lt;BR /&gt;0x810000 &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;CS&lt;BR /&gt;&lt;/MINOR&gt;&lt;/VGNAME&gt;</description>
      <pubDate>Fri, 12 Aug 2005 04:41:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mknod/m-p/3602477#M618755</guid>
      <dc:creator>saju_2</dc:creator>
      <dc:date>2005-08-12T04:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: mknod</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/mknod/m-p/3602478#M618756</link>
      <description>hi Yogesh,&lt;BR /&gt;&lt;BR /&gt;basic mistake for hexadecimal as it do not even include h, only from a-f. &lt;BR /&gt;&lt;BR /&gt;u may like to add the next group after checking vg group:&lt;BR /&gt;&lt;BR /&gt;# ls -ld /dev/vg*/group&lt;BR /&gt; look at the last minor number and add 1 to it.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards.</description>
      <pubDate>Fri, 12 Aug 2005 04:41:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/mknod/m-p/3602478#M618756</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2005-08-12T04:41:58Z</dc:date>
    </item>
  </channel>
</rss>

