<?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: LVM in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132604#M450313</link>
    <description>strings /etc/lvmtab&lt;BR /&gt;&lt;BR /&gt;If there isn't any reference to this disk you may safely &lt;BR /&gt;&lt;BR /&gt;pvcreate -f /dev/rdsk/c0t1d0&lt;BR /&gt;&lt;BR /&gt;Also you should assign points to everyone that help you, it's a great way to say thanks. My two cents.</description>
    <pubDate>Mon, 29 Sep 2008 21:10:20 GMT</pubDate>
    <dc:creator>Andres_13</dc:creator>
    <dc:date>2008-09-29T21:10:20Z</dc:date>
    <item>
      <title>LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132596#M450305</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;I need to create VG01 on this box with logical volume as oracle&lt;BR /&gt;&lt;BR /&gt;# vgdisplay&lt;BR /&gt;--- Volume groups ---&lt;BR /&gt;VG Name                     /dev/vg00&lt;BR /&gt;VG Write Access             read/write&lt;BR /&gt;VG Status                   available&lt;BR /&gt;Max LV                      255&lt;BR /&gt;Cur LV                      8&lt;BR /&gt;Open LV                     8&lt;BR /&gt;Max PV                      16&lt;BR /&gt;Cur PV                      1&lt;BR /&gt;Act PV                      1&lt;BR /&gt;Max PE per PV               4356&lt;BR /&gt;VGDA                        2&lt;BR /&gt;PE Size (Mbytes)            32&lt;BR /&gt;Total PE                    4346&lt;BR /&gt;Alloc PE                    951&lt;BR /&gt;Free PE                     3395&lt;BR /&gt;Total PVG                   0&lt;BR /&gt;Total Spare PVs             0&lt;BR /&gt;Total Spare PVs in use      0&lt;BR /&gt;&lt;BR /&gt;# strings /etc/lvmtab&lt;BR /&gt;/dev/vg00&lt;BR /&gt;/dev/dsk/c0t0d0s2&lt;BR /&gt;&lt;BR /&gt;# ioscan -kfnC disk&lt;BR /&gt;Class        I  H/W Path       Driver    S/W State   H/W Type     Description&lt;BR /&gt;==============================================================================&lt;BR /&gt;disk         0  0/2/1/0.0.0.0.0  sdisk     CLAIMED     DEVICE       HP      DG14&lt;BR /&gt;6BABCF&lt;BR /&gt;                              /dev/dsk/c0t0d0     /dev/rdsk/c0t0d0&lt;BR /&gt;                              /dev/dsk/c0t0d0s1   /dev/rdsk/c0t0d0s1&lt;BR /&gt;                              /dev/dsk/c0t0d0s2   /dev/rdsk/c0t0d0s2&lt;BR /&gt;                              /dev/dsk/c0t0d0s3   /dev/rdsk/c0t0d0s3&lt;BR /&gt;disk         1  0/2/1/0.0.0.1.0  sdisk     CLAIMED     DEVICE       HP      DG14&lt;BR /&gt;6BABCF&lt;BR /&gt;                              /dev/dsk/c0t1d0   /dev/rdsk/c0t1d0&lt;BR /&gt;&lt;BR /&gt;Could you help me out with the commands plz...&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 29 Sep 2008 20:22:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132596#M450305</guid>
      <dc:creator>Grayh</dc:creator>
      <dc:date>2008-09-29T20:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132597#M450306</link>
      <description>Assuming you want something similar to vg00:&lt;BR /&gt;&lt;BR /&gt;mkdir /dev/VG01&lt;BR /&gt;mknod /dev/VG01/group c 64 0x010000&lt;BR /&gt;&lt;BR /&gt;vgcreate -s 32 /dev/VG01 /dev/dsk/c0t1d0&lt;BR /&gt;&lt;BR /&gt;lvcreate -L &lt;SIZE_IN_MB&gt; -n oracle /dev/VG01&lt;BR /&gt;&lt;BR /&gt;newfs -F vxfs -o largefiles /dev/VG01/roracle&lt;BR /&gt;&lt;BR /&gt;mount /dev/VG01/oracle &lt;MOUNT_POINT&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;/MOUNT_POINT&gt;&lt;/SIZE_IN_MB&gt;</description>
      <pubDate>Mon, 29 Sep 2008 20:37:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132597#M450306</guid>
      <dc:creator>Andres_13</dc:creator>
      <dc:date>2008-09-29T20:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132598#M450307</link>
      <description>pvcreate /dev/rdsk/c0t1d0&lt;BR /&gt;mkdir /dev/vg01&lt;BR /&gt;mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;vgcreate /dev/vg01 /dev/dsk/c0t1d0&lt;BR /&gt;lvcreate -L sizeMB -n oracle /dev/vg01&lt;BR /&gt;newfs -o largefiles /dev/vg01/roracle&lt;BR /&gt;vi /etc/fstab&lt;BR /&gt;(/dev/vg01/oracle /u01 vxfs largefiles 0 2&lt;BR /&gt;mount /u01&lt;BR /&gt;&lt;BR /&gt;(substitute the example names with anything you would like )&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 29 Sep 2008 20:39:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132598#M450307</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-09-29T20:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132599#M450308</link>
      <description>Forgot to said that you need to:&lt;BR /&gt;&lt;BR /&gt;pvcreate /dev/dsk/c0t1d0&lt;BR /&gt;&lt;BR /&gt;before you can add it to VG01.&lt;BR /&gt;&lt;BR /&gt;Regards!</description>
      <pubDate>Mon, 29 Sep 2008 20:40:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132599#M450308</guid>
      <dc:creator>Andres_13</dc:creator>
      <dc:date>2008-09-29T20:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132600#M450309</link>
      <description>Thanks everyone... I have an issue again&lt;BR /&gt;&lt;BR /&gt;# vgcreate -s 16 /dev/vg01 /dev/dsk/c0t0d0&lt;BR /&gt;vgcreate: Physical Volume "/dev/dsk/c0t0d0" contains no LVM information&lt;BR /&gt;&lt;BR /&gt;I did insf -e but still the same error&lt;BR /&gt;&lt;BR /&gt;In ioscan it is shown as claimed&lt;BR /&gt;&lt;BR /&gt;# diskinfo /dev/rdsk/c0t0d0&lt;BR /&gt;SCSI describe of /dev/rdsk/c0t0d0:&lt;BR /&gt;             vendor: HP&lt;BR /&gt;         product id: DG146BABCF&lt;BR /&gt;               type: direct access&lt;BR /&gt;               size: 143374744 Kbytes&lt;BR /&gt;   bytes per sector: 512&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 29 Sep 2008 20:54:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132600#M450309</guid>
      <dc:creator>Grayh</dc:creator>
      <dc:date>2008-09-29T20:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132601#M450310</link>
      <description># pvdisplay -l /dev/dsk/c0t1d0&lt;BR /&gt;/dev/dsk/c0t1d0:LVM_Disk=yes&lt;BR /&gt;&lt;BR /&gt;# pvdisplay -l /dev/dsk/c0t0d0&lt;BR /&gt;/dev/dsk/c0t0d0:LVM_Disk=no</description>
      <pubDate>Mon, 29 Sep 2008 20:55:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132601#M450310</guid>
      <dc:creator>Grayh</dc:creator>
      <dc:date>2008-09-29T20:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132602#M450311</link>
      <description># pvcreate -f /dev/rdisk/c0t0d0&lt;BR /&gt;Couldn't stat physical volume "/dev/rdisk/c0t0d0":&lt;BR /&gt;pvcreate: Couldn't open physical volume "/dev/rdisk/c0t0d0":&lt;BR /&gt;No such file or directory</description>
      <pubDate>Mon, 29 Sep 2008 20:56:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132602#M450311</guid>
      <dc:creator>Grayh</dc:creator>
      <dc:date>2008-09-29T20:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132603#M450312</link>
      <description># pvcreate /dev/rdsk/c0t1d0&lt;BR /&gt;pvcreate: The physical volume already belongs to a volume group</description>
      <pubDate>Mon, 29 Sep 2008 20:57:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132603#M450312</guid>
      <dc:creator>Grayh</dc:creator>
      <dc:date>2008-09-29T20:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132604#M450313</link>
      <description>strings /etc/lvmtab&lt;BR /&gt;&lt;BR /&gt;If there isn't any reference to this disk you may safely &lt;BR /&gt;&lt;BR /&gt;pvcreate -f /dev/rdsk/c0t1d0&lt;BR /&gt;&lt;BR /&gt;Also you should assign points to everyone that help you, it's a great way to say thanks. My two cents.</description>
      <pubDate>Mon, 29 Sep 2008 21:10:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132604#M450313</guid>
      <dc:creator>Andres_13</dc:creator>
      <dc:date>2008-09-29T21:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132605#M450314</link>
      <description>The disk c0t0d0 is used by vg00!&lt;BR /&gt;&lt;BR /&gt;# pvcreate /dev/rdsk/c0t1d0&lt;BR /&gt;pvcreate: The physical volume already belongs to a volume group&lt;BR /&gt;&lt;BR /&gt;Use&lt;BR /&gt;&lt;BR /&gt;# strings /etc/lvmtab&lt;BR /&gt;&lt;BR /&gt;and&lt;BR /&gt;&lt;BR /&gt;# vgdisplay -v&lt;BR /&gt;&lt;BR /&gt;to find out what you did so far ...</description>
      <pubDate>Tue, 30 Sep 2008 04:57:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132605#M450314</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2008-09-30T04:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132606#M450315</link>
      <description>Hi Grayh,&lt;BR /&gt;&lt;BR /&gt;First make sure that you do not have any VG's other than VG00. Because you might have exported some VG's.&lt;BR /&gt;&lt;BR /&gt;We can suggest based on the details provided by you. As per your details c0t0d0 is already used with VG00 and don't do anything with this disk.&lt;BR /&gt;&lt;BR /&gt;If you are sure that no VG's being used other than VG00 then do pvcreate -f &lt;NEW disk=""&gt; then start vg creation process. Steps are already provided to you by our experts.&lt;BR /&gt;&lt;BR /&gt;&lt;/NEW&gt;</description>
      <pubDate>Tue, 30 Sep 2008 10:14:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132606#M450315</guid>
      <dc:creator>Ganesan R</dc:creator>
      <dc:date>2008-09-30T10:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132607#M450316</link>
      <description># pvcreate /dev/rdsk/c0t1d0&lt;BR /&gt;Physical volume "/dev/rdsk/c0t1d0" has been successfully created.&lt;BR /&gt;# mkdir /dev/vg01&lt;BR /&gt;mkdir: cannot create /dev/vg01: File exists&lt;BR /&gt;# mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;mknod: File exists&lt;BR /&gt;# vgcreate /dev/vg01 /dev/dsk/c0t1d0&lt;BR /&gt;Increased the number of physical extents per physical volume to 35003.&lt;BR /&gt;vgcreate: Volume group "/dev/vg01" could not be created:&lt;BR /&gt;VGRA for the disk is too big for the specified parameters. Increase the&lt;BR /&gt;extent size or decrease max_PVs/max_LVs and try again.&lt;BR /&gt;&lt;BR /&gt;# vgdisplay -v&lt;BR /&gt;--- Volume groups ---&lt;BR /&gt;VG Name                     /dev/vg00&lt;BR /&gt;VG Write Access             read/write&lt;BR /&gt;VG Status                   available&lt;BR /&gt;Max LV                      255&lt;BR /&gt;Cur LV                      8&lt;BR /&gt;Open LV                     8&lt;BR /&gt;Max PV                      16&lt;BR /&gt;Cur PV                      1&lt;BR /&gt;Act PV                      1&lt;BR /&gt;Max PE per PV               4356&lt;BR /&gt;VGDA                        2&lt;BR /&gt;PE Size (Mbytes)            32&lt;BR /&gt;Total PE                    4346&lt;BR /&gt;Alloc PE                    951&lt;BR /&gt;Free PE                     3395&lt;BR /&gt;Total PVG                   0&lt;BR /&gt;Total Spare PVs             0&lt;BR /&gt;Total Spare PVs in use      0&lt;BR /&gt;&lt;BR /&gt;   --- Logical volumes ---&lt;BR /&gt;   LV Name                     /dev/vg00/lvol1&lt;BR /&gt;   LV Status                   available/syncd&lt;BR /&gt;   LV Size (Mbytes)            1792&lt;BR /&gt;   Current LE                  56&lt;BR /&gt;   Allocated PE                56&lt;BR /&gt;   Used PV                     1&lt;BR /&gt;&lt;BR /&gt;   LV Name                     /dev/vg00/lvol2&lt;BR /&gt;   LV Status                   available/syncd&lt;BR /&gt;   LV Size (Mbytes)            8192&lt;BR /&gt;   Current LE                  256&lt;BR /&gt;   Allocated PE                256&lt;BR /&gt;   Used PV                     1&lt;BR /&gt;&lt;BR /&gt;   LV Name                     /dev/vg00/lvol3&lt;BR /&gt;   LV Status                   available/syncd&lt;BR /&gt;   LV Size (Mbytes)            1024&lt;BR /&gt;   Current LE                  32&lt;BR /&gt;   Allocated PE                32&lt;BR /&gt;   Used PV                     1&lt;BR /&gt;&lt;BR /&gt;   LV Name                     /dev/vg00/lvol4&lt;BR /&gt;   LV Status                   available/syncd&lt;BR /&gt;   LV Size (Mbytes)            512&lt;BR /&gt;   Current LE                  16&lt;BR /&gt;   Allocated PE                16&lt;BR /&gt;   Used PV                     1&lt;BR /&gt;&lt;BR /&gt;   LV Name                     /dev/vg00/lvol5&lt;BR /&gt;   LV Status                   available/syncd&lt;BR /&gt;   LV Size (Mbytes)            128&lt;BR /&gt;   Current LE                  4&lt;BR /&gt;   Allocated PE                4&lt;BR /&gt;   Used PV                     1&lt;BR /&gt;&lt;BR /&gt;   LV Name                     /dev/vg00/lvol6&lt;BR /&gt;   LV Status                   available/syncd&lt;BR /&gt;   LV Size (Mbytes)            2912&lt;BR /&gt;   Current LE                  91&lt;BR /&gt;   Allocated PE                91&lt;BR /&gt;   Used PV                     1&lt;BR /&gt;&lt;BR /&gt;   LV Name                     /dev/vg00/lvol7&lt;BR /&gt;   LV Status                   available/syncd&lt;BR /&gt;   LV Size (Mbytes)            7168&lt;BR /&gt;   Current LE                  224&lt;BR /&gt;   Allocated PE                224&lt;BR /&gt;   Used PV                     1&lt;BR /&gt;&lt;BR /&gt;   LV Name                     /dev/vg00/lvol8&lt;BR /&gt;   LV Status                   available/syncd&lt;BR /&gt;   LV Size (Mbytes)            8704&lt;BR /&gt;   Current LE                  272&lt;BR /&gt;   Allocated PE                272&lt;BR /&gt;   Used PV                     1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;   --- Physical volumes ---&lt;BR /&gt;   PV Name                     /dev/dsk/c0t0d0s2&lt;BR /&gt;   PV Status                   available&lt;BR /&gt;   Total PE                    4346&lt;BR /&gt;   Free PE                     3395&lt;BR /&gt;   Autoswitch                  On&lt;BR /&gt;   Proactive Polling           On&lt;BR /&gt;&lt;BR /&gt;# strings /etc/lvmtab&lt;BR /&gt;/dev/vg00&lt;BR /&gt;/dev/dsk/c0t0d0s2&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Sep 2008 11:32:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132607#M450316</guid>
      <dc:creator>Grayh</dc:creator>
      <dc:date>2008-09-30T11:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132608#M450317</link>
      <description># vgcreate /dev/vg01 /dev/dsk/c0t1d0&lt;BR /&gt;Increased the number of physical extents per physical volume to 35003.&lt;BR /&gt;vgcreate: Volume group "/dev/vg01" could not be created:&lt;BR /&gt;VGRA for the disk is too big for the specified parameters. Increase the&lt;BR /&gt;extent size or decrease max_PVs/max_LVs and try again.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Try&lt;BR /&gt;&lt;BR /&gt;# vgcreate -s 8 -e 65535 /dev/vg01 /dev/dsk/c0t1d0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;see&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B3921-60631/vgcreate.1M.html" target="_blank"&gt;http://docs.hp.com/en/B3921-60631/vgcreate.1M.html&lt;/A&gt;</description>
      <pubDate>Tue, 30 Sep 2008 11:41:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132608#M450317</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2008-09-30T11:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132609#M450318</link>
      <description>Thanks everyone</description>
      <pubDate>Tue, 30 Sep 2008 11:44:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5132609#M450318</guid>
      <dc:creator>Grayh</dc:creator>
      <dc:date>2008-09-30T11:44:13Z</dc:date>
    </item>
  </channel>
</rss>

