<?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/5150650#M454674</link>
    <description>Hi viney,&lt;BR /&gt;&lt;BR /&gt;there are two ways to it, u can can create the stripped LVs or u can simply create the spanned LVs.&lt;BR /&gt;&lt;BR /&gt;for the stipped LVs that will get vreated using this command.&lt;BR /&gt;&lt;BR /&gt;#lvcreate -i 3 -I 32 -L 8192 /dev/vg00&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ya this is true that in future u shall need 3 other disk to increase this LV if u fall short of spoace on these 3 disks.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;for simple spanned volume u can do like this&lt;BR /&gt;&lt;BR /&gt;#lvcreate -L 2792 /dev/vg02&lt;BR /&gt;#lvextend -L 5584 /dev/vg02/lvol1 /dev/dsk/c0t2d0&lt;BR /&gt;#lvextend -L 8376 /dev/g02/lvol1 /dev/dsk/c0t3d0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;i have assumed that at the time of creating the VG u have added the PVs in the order of &lt;BR /&gt;/dev/dsk/c0t1d0 ,/dev/dsk/c0t2d0 ,/dev/dsk/c0t3d0.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;this is a simple spanned volume and remember that it should be non-contiguos .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Sujit</description>
    <pubDate>Thu, 15 Jan 2009 09:14:29 GMT</pubDate>
    <dc:creator>sujit kumar singh</dc:creator>
    <dc:date>2009-01-15T09:14:29Z</dc:date>
    <item>
      <title>LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150646#M454670</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;I have one vg02 with pv /dev/dsk/c0t1d0,/dev/dsk/c0t2d0,/dev/dsk/c0t3d0.And i want to create one lv by using all pv&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;viney</description>
      <pubDate>Wed, 14 Jan 2009 23:12:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150646#M454670</guid>
      <dc:creator>Viney Kumar</dc:creator>
      <dc:date>2009-01-14T23:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150647#M454671</link>
      <description>Use the lvcreate command and specify a size that encompasses all disks.&lt;BR /&gt;&lt;BR /&gt;# lvcreate -L &lt;SIZE in="" mb=""&gt; /dev/vg02&lt;BR /&gt;&lt;BR /&gt;The use newfs to create the filesystem on the disk.&lt;BR /&gt;&lt;BR /&gt;# newfs -F vxfs -o largefiles /dev/vg02/rlvol1&lt;BR /&gt;&lt;BR /&gt;Then mount your filesystem where ever you need.&lt;/SIZE&gt;</description>
      <pubDate>Thu, 15 Jan 2009 00:09:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150647#M454671</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2009-01-15T00:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150648#M454672</link>
      <description>hi &lt;BR /&gt;&lt;BR /&gt;ya i knw but actually mi requirement is different, Let i have 3 pv with 16 GB each.And i want to create lv with 8 gb that is used all three pv's pe</description>
      <pubDate>Thu, 15 Jan 2009 00:19:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150648#M454672</guid>
      <dc:creator>Viney Kumar</dc:creator>
      <dc:date>2009-01-15T00:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150649#M454673</link>
      <description>You need to use striping. See "man lvcreate". There are two kinds, distributed allocation (lvcreate -D y ...) and stripe scheduling (-i and -I options). The second type is recommended. &lt;BR /&gt;lvcreate -L MB-size -i 3 -I 128 /dev/vg02&lt;BR /&gt;The catch is that with striping when your disks fill up you have to add 3 disks again to vg02 to get more space.&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Jan 2009 01:21:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150649#M454673</guid>
      <dc:creator>TTr</dc:creator>
      <dc:date>2009-01-15T01:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150650#M454674</link>
      <description>Hi viney,&lt;BR /&gt;&lt;BR /&gt;there are two ways to it, u can can create the stripped LVs or u can simply create the spanned LVs.&lt;BR /&gt;&lt;BR /&gt;for the stipped LVs that will get vreated using this command.&lt;BR /&gt;&lt;BR /&gt;#lvcreate -i 3 -I 32 -L 8192 /dev/vg00&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ya this is true that in future u shall need 3 other disk to increase this LV if u fall short of spoace on these 3 disks.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;for simple spanned volume u can do like this&lt;BR /&gt;&lt;BR /&gt;#lvcreate -L 2792 /dev/vg02&lt;BR /&gt;#lvextend -L 5584 /dev/vg02/lvol1 /dev/dsk/c0t2d0&lt;BR /&gt;#lvextend -L 8376 /dev/g02/lvol1 /dev/dsk/c0t3d0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;i have assumed that at the time of creating the VG u have added the PVs in the order of &lt;BR /&gt;/dev/dsk/c0t1d0 ,/dev/dsk/c0t2d0 ,/dev/dsk/c0t3d0.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;this is a simple spanned volume and remember that it should be non-contiguos .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Sujit</description>
      <pubDate>Thu, 15 Jan 2009 09:14:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150650#M454674</guid>
      <dc:creator>sujit kumar singh</dc:creator>
      <dc:date>2009-01-15T09:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150651#M454675</link>
      <description>hi last post that i have stated is for the spanned vol and stripd LVs.&lt;BR /&gt;&lt;BR /&gt;u can also take the help of the PVGs that is crrate a file /etc/lvmpvg and add the following entries on to that.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#vi /etc/lvmpvg&lt;BR /&gt;VG /dev/vg02&lt;BR /&gt;PVG pvg0&lt;BR /&gt;/dev/dsk/c0t1d0&lt;BR /&gt;/dev/dsk/c0t2d0&lt;BR /&gt;/dev/dsk/c0t3d0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;save and exit&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and then craete the LV as u desire:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#lvcreate -L 8192 -D y -s g /dev/vg02&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;this will create a LV that will have the PEs distributed among all the disks in Distributed Extent Based Striping (which is different from the basic Striping as i have said in the earlier post).&lt;BR /&gt;&lt;BR /&gt;yes if u want to increase this LV once u r exhuated of space on the PVs u will need to add 3 disks , else u will have to remove the -D n that is non -distibuted then u can extend this LV but u will  not able to get this Distributed Extent again if u run a -D n once.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;sujit</description>
      <pubDate>Thu, 15 Jan 2009 09:22:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150651#M454675</guid>
      <dc:creator>sujit kumar singh</dc:creator>
      <dc:date>2009-01-15T09:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150652#M454676</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if u have been directly / indirectly helped by the posted relies please do nit forget to assign the points.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;see this thread&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;sujit</description>
      <pubDate>Thu, 15 Jan 2009 16:40:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150652#M454676</guid>
      <dc:creator>sujit kumar singh</dc:creator>
      <dc:date>2009-01-15T16:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: LVM</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150653#M454677</link>
      <description>Thanks to all,  &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Jan 2009 18:22:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm/m-p/5150653#M454677</guid>
      <dc:creator>Viney Kumar</dc:creator>
      <dc:date>2009-01-15T18:22:43Z</dc:date>
    </item>
  </channel>
</rss>

