<?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 vgcreate problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate-problem/m-p/2740543#M642613</link>
    <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I am trying to create a new VG, but I am getting the next message:&lt;BR /&gt;#vgcreate /dev/xxx /dev/dsk/c1t3d0&lt;BR /&gt;vgcreate: "/dev/xxx/group": not a character device.&lt;BR /&gt;&lt;BR /&gt;The disk is ok and it is available to the box:&lt;BR /&gt;#lssf /dev/dsk/c1t3d0&lt;BR /&gt;disc3 card instance 1 SCSI target 3 SCSI LUN 0 section 0 at address 24.3.0 /dev/dsk/c1t3d0&lt;BR /&gt;#diskinfo /dev/rdsk/c1t3d0&lt;BR /&gt;SCSI describe of /dev/rdsk/c1t3d0:&lt;BR /&gt;             vendor: HP&lt;BR /&gt;         product id: C2490WD&lt;BR /&gt;               type: direct access&lt;BR /&gt;               size: 2082636 Kbytes&lt;BR /&gt;   bytes per sector: 512&lt;BR /&gt;#dd if=/dev/rdsk/c1t3d0 of=/dev/null bs=512 count=2000&lt;BR /&gt;2000+0 records in&lt;BR /&gt;2000+0 records out&lt;BR /&gt;&lt;BR /&gt;I don't have /dev/xxx directory. The disk is on a shared SCSI bus ( I already have one VG on that bus) in a cluster. HP-UX version is 11i, the box model is 9000/867/G40/H40.  &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Troy.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Sun, 09 Jun 2002 01:18:09 GMT</pubDate>
    <dc:creator>Troyan Krastev</dc:creator>
    <dc:date>2002-06-09T01:18:09Z</dc:date>
    <item>
      <title>vgcreate problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate-problem/m-p/2740543#M642613</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I am trying to create a new VG, but I am getting the next message:&lt;BR /&gt;#vgcreate /dev/xxx /dev/dsk/c1t3d0&lt;BR /&gt;vgcreate: "/dev/xxx/group": not a character device.&lt;BR /&gt;&lt;BR /&gt;The disk is ok and it is available to the box:&lt;BR /&gt;#lssf /dev/dsk/c1t3d0&lt;BR /&gt;disc3 card instance 1 SCSI target 3 SCSI LUN 0 section 0 at address 24.3.0 /dev/dsk/c1t3d0&lt;BR /&gt;#diskinfo /dev/rdsk/c1t3d0&lt;BR /&gt;SCSI describe of /dev/rdsk/c1t3d0:&lt;BR /&gt;             vendor: HP&lt;BR /&gt;         product id: C2490WD&lt;BR /&gt;               type: direct access&lt;BR /&gt;               size: 2082636 Kbytes&lt;BR /&gt;   bytes per sector: 512&lt;BR /&gt;#dd if=/dev/rdsk/c1t3d0 of=/dev/null bs=512 count=2000&lt;BR /&gt;2000+0 records in&lt;BR /&gt;2000+0 records out&lt;BR /&gt;&lt;BR /&gt;I don't have /dev/xxx directory. The disk is on a shared SCSI bus ( I already have one VG on that bus) in a cluster. HP-UX version is 11i, the box model is 9000/867/G40/H40.  &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Troy.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 09 Jun 2002 01:18:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate-problem/m-p/2740543#M642613</guid>
      <dc:creator>Troyan Krastev</dc:creator>
      <dc:date>2002-06-09T01:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate-problem/m-p/2740544#M642614</link>
      <description>Did you create the device file before you create your new VG ? For example if you want to create vg04.&lt;BR /&gt;# pvcreate /dev/rdsk/c1t3d0&lt;BR /&gt;# mkdir /dev/vg04&lt;BR /&gt;# mknod /dev/vg04/group c 64 0x040000&lt;BR /&gt;==&amp;gt; Major number for LVM = 64 (lsdev|grep 64)&lt;BR /&gt;==&amp;gt; Makes sure the minor number is unique (0x040000). To check for all existing minor number .. (ll /dev/vg*/group)&lt;BR /&gt;# vgcreate /dev/vg04 /dev/dsk/c1t3d0&lt;BR /&gt;&lt;BR /&gt;Assumption==&amp;gt; c1t3d0 is not used in any VG yet.</description>
      <pubDate>Sun, 09 Jun 2002 01:39:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate-problem/m-p/2740544#M642614</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-06-09T01:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: vgcreate problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate-problem/m-p/2740545#M642615</link>
      <description>Thanks S.K. Chan,&lt;BR /&gt;&lt;BR /&gt;Next time I will be more carefull and try not to miss "mknod" :-).&lt;BR /&gt;&lt;BR /&gt;Thanks again,&lt;BR /&gt;Troy.&lt;BR /&gt;</description>
      <pubDate>Sun, 09 Jun 2002 02:06:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/vgcreate-problem/m-p/2740545#M642615</guid>
      <dc:creator>Troyan Krastev</dc:creator>
      <dc:date>2002-06-09T02:06:34Z</dc:date>
    </item>
  </channel>
</rss>

