<?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 concept in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258330#M552124</link>
    <description>@Vel-UX:&lt;BR /&gt;&lt;BR /&gt;don't forget the credits:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://blogs.neuronring.com/blogs/computer/unix-and-linux/logical-volume-manager-lvm-configuration/" target="_blank"&gt;http://blogs.neuronring.com/blogs/computer/unix-and-linux/logical-volume-manager-lvm-configuration/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;@sriprabhu:&lt;BR /&gt;&lt;BR /&gt;see also "man 7 lvm" or&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B9106-90013/lvm.7.html" target="_blank"&gt;http://docs.hp.com/en/B9106-90013/lvm.7.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Sun, 10 Oct 2010 07:04:29 GMT</pubDate>
    <dc:creator>Viktor Balogh</dc:creator>
    <dc:date>2010-10-10T07:04:29Z</dc:date>
    <item>
      <title>lvm concept</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258328#M552122</link>
      <description>&lt;!--!*#--&gt;Hai&lt;BR /&gt;&lt;BR /&gt;i need a lvm concept document if you have please send it</description>
      <pubDate>Sat, 09 Oct 2010 13:55:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258328#M552122</guid>
      <dc:creator>sriprabhu</dc:creator>
      <dc:date>2010-10-09T13:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: lvm concept</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258329#M552123</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;HP-UX LVM is used to manage disk space with special features like mirroring, high availability, stripping, etc. Physical volumes can be organized into a logical volume groups with equal size extent.&lt;BR /&gt;&lt;BR /&gt;Each volume group can have one or more physical volumes. A system can have more than single volume groups. A volume group can be moved from a system to another instead of physical disk.&lt;BR /&gt;&lt;BR /&gt;A volume group can be divided into virtual disks, called logical volumes. A logical volume can span a number of physical volumes or represent only a portion of one physical volume. Disks can be added into logical volumes with different sizes.&lt;BR /&gt;&lt;BR /&gt;The following commands are used to create, display and manipulate the LVM:&lt;BR /&gt;&lt;BR /&gt;1. pvcreate&lt;BR /&gt;&lt;BR /&gt;Creates physical volume to use in logical volume group.&lt;BR /&gt;&lt;BR /&gt;Syntax:  pvcreate -f /dev/rdsk/c2tod1&lt;BR /&gt;&lt;BR /&gt;2. pvdisplay&lt;BR /&gt;&lt;BR /&gt;Displays information about physical volumes in LVM volume group.&lt;BR /&gt;&lt;BR /&gt;Syntax:  pvdisplay /dev/dsk/c2tod1&lt;BR /&gt;&lt;BR /&gt;3. pvmove &lt;BR /&gt;&lt;BR /&gt;Move allocated physical extents frm one LVM physcal volume to another.&lt;BR /&gt;&lt;BR /&gt;Syntax:  pvmove /dev/dsk/c1t0d0 PVG0&lt;BR /&gt;&lt;BR /&gt;4. vgcreate&lt;BR /&gt;&lt;BR /&gt;Creates LVM volume group.&lt;BR /&gt;&lt;BR /&gt;Syntax:  Create a directory for volume group. &lt;BR /&gt;&lt;BR /&gt;mkdir /dev/vg00 &lt;BR /&gt;&lt;BR /&gt;vgcreate -s 2 /dev/vg00 /dev/dsk/c1t0d0&lt;BR /&gt;&lt;BR /&gt;5. vgdisplay&lt;BR /&gt;&lt;BR /&gt;Display information about LVM volume groups.&lt;BR /&gt;&lt;BR /&gt;Syntax:  vgdisplay -v /dev/vg00&lt;BR /&gt;&lt;BR /&gt;6. vgexport&lt;BR /&gt;&lt;BR /&gt;Export an LVM volume group and its associated logical volumes.&lt;BR /&gt;&lt;BR /&gt;Syntax:  vgexport -v -f vg00.outfile /dev/vg00&lt;BR /&gt;&lt;BR /&gt;7. vgimport&lt;BR /&gt;&lt;BR /&gt;Import an LVM volume group onto the system.&lt;BR /&gt;&lt;BR /&gt;Syntax: vgimport -v /dev/vg00 /dev/dsk/c0t1d0&lt;BR /&gt;&lt;BR /&gt;8. vgextend&lt;BR /&gt;&lt;BR /&gt;Extend an LVM volume group by adding physical volumes.&lt;BR /&gt;&lt;BR /&gt;Syntax:  vgextend /dev/vg00 /dev/dsk/c0t1d0&lt;BR /&gt;&lt;BR /&gt;9. vgreduce&lt;BR /&gt;&lt;BR /&gt;Remove physical volumes from an LVM volume group.&lt;BR /&gt;&lt;BR /&gt;Syntax:  vgreduce /dev/vg00 /dev/dsk/c0t1d0&lt;BR /&gt;&lt;BR /&gt;10. vgremove&lt;BR /&gt;&lt;BR /&gt;Remove LVM logical volume group from system.&lt;BR /&gt;&lt;BR /&gt;Syntax:  vgremove /dev/vg00 /dev/dsk/c0t1d0&lt;BR /&gt;&lt;BR /&gt;11. vgscan&lt;BR /&gt;&lt;BR /&gt;Scans physcal volumes for LVM volume group.&lt;BR /&gt;&lt;BR /&gt;Syntax: vgscan&lt;BR /&gt;&lt;BR /&gt;12. lvcreate&lt;BR /&gt;&lt;BR /&gt;Creates logical volume in LVM volume group.&lt;BR /&gt;&lt;BR /&gt;Syntax: &lt;BR /&gt;&lt;BR /&gt;lvcreate -L 100 /dev/vg03&lt;BR /&gt;&lt;BR /&gt;13.  lvdisplay&lt;BR /&gt;&lt;BR /&gt;Displays information about logical volumes .&lt;BR /&gt;&lt;BR /&gt;lvdisplay /dev/vg00&lt;BR /&gt;&lt;BR /&gt;14. lvextend&lt;BR /&gt;&lt;BR /&gt;Increase space,mirrors for logical volumes.&lt;BR /&gt;&lt;BR /&gt;lvextend -L 400 /dev/vg03&lt;BR /&gt;&lt;BR /&gt;15.  lvreduce&lt;BR /&gt;&lt;BR /&gt;Reduce number of physical extents, mirrors.&lt;BR /&gt;&lt;BR /&gt;lvreduce -L 50 /dev/vg03&lt;BR /&gt;&lt;BR /&gt;16. lvremove&lt;BR /&gt;&lt;BR /&gt;Remove one or more logical volumes from system.&lt;BR /&gt;&lt;BR /&gt;lvremove -f /dev/vg03&lt;BR /&gt;&lt;BR /&gt;17. lvlnboot&lt;BR /&gt;&lt;BR /&gt;Prepare LVM logical volume to be root, boot, primary swap, or dump volume.&lt;BR /&gt;&lt;BR /&gt;lvlnboot -r /dev/vg00&lt;BR /&gt;&lt;BR /&gt;18. lvrmboot&lt;BR /&gt;&lt;BR /&gt;Remove logical volume link to root, primary swap, or dump volume.&lt;BR /&gt;&lt;BR /&gt;lvrmboot -r /dev/vg00&lt;BR /&gt;</description>
      <pubDate>Sun, 10 Oct 2010 05:17:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258329#M552123</guid>
      <dc:creator>P Arumugavel</dc:creator>
      <dc:date>2010-10-10T05:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: lvm concept</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258330#M552124</link>
      <description>@Vel-UX:&lt;BR /&gt;&lt;BR /&gt;don't forget the credits:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://blogs.neuronring.com/blogs/computer/unix-and-linux/logical-volume-manager-lvm-configuration/" target="_blank"&gt;http://blogs.neuronring.com/blogs/computer/unix-and-linux/logical-volume-manager-lvm-configuration/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;@sriprabhu:&lt;BR /&gt;&lt;BR /&gt;see also "man 7 lvm" or&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B9106-90013/lvm.7.html" target="_blank"&gt;http://docs.hp.com/en/B9106-90013/lvm.7.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 10 Oct 2010 07:04:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258330#M552124</guid>
      <dc:creator>Viktor Balogh</dc:creator>
      <dc:date>2010-10-10T07:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: lvm concept</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258331#M552125</link>
      <description>Overview of LVM Operation&lt;BR /&gt;========================= &lt;BR /&gt;Logical Volume Manager (LVM) is a subsystem for managing file systems and disk storage space that are structured into logical volumes rather than being restricted to the beginning and end points of a physical disk. Logical volumes can be smaller than the disk or disk array on which they reside, or they can include all or part of several disks or disk arrays. Logical volume boundaries are not required to coincide with the boundaries of physical disks when multiple disks or arrays are used.&lt;BR /&gt;&lt;BR /&gt;Managing logical volumes is done by the Logical Volume Manager, not the kernel. However, the kernel contains data structures for each volume group on the system, and the space reserved for LVM data structures must be sufficient to support the number of volume groups that exist on the system. This is done by the maxvgs kernel configuration parameter. A second parameter, no_lvm_disks, is provided for notifying the kernel at boot time that no logical volumes exist on the system. This saves the system from having to identify and activate logical volumes at boot time.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;LVM Architecture Overview.&lt;BR /&gt;==========================&lt;BR /&gt;&lt;A href="http://www.centos.org/docs/5/html/Cluster_Logical_Volume_Manager/LVM_definition.html" target="_blank"&gt;http://www.centos.org/docs/5/html/Cluster_Logical_Volume_Manager/LVM_definition.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Go through Below link to know basic concept about lvm.&lt;BR /&gt;===============================================&lt;BR /&gt;&lt;A href="http://linux.web.cern.ch/linux/scientific5/docs/rhel/Cluster_Logical_Volume_Manager/LVM_CLI.html" target="_blank"&gt;http://linux.web.cern.ch/linux/scientific5/docs/rhel/Cluster_Logical_Volume_Manager/LVM_CLI.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Find Below Link for Some of Good HP-UX LVM technical Document&lt;BR /&gt;=======================================================&lt;BR /&gt;&lt;A href="http://h20000.www2.hp.com/bizsupport/TechSupport/DocumentIndex.jsp?lang=en&amp;amp;cc=us&amp;amp;taskId=101&amp;amp;prodClassId=10008&amp;amp;contentType=SupportManual&amp;amp;docIndexId=64255&amp;amp;prodTypeId=18964&amp;amp;prodSeriesId=4296010" target="_blank"&gt;http://h20000.www2.hp.com/bizsupport/TechSupport/DocumentIndex.jsp?lang=en&amp;amp;cc=us&amp;amp;taskId=101&amp;amp;prodClassId=10008&amp;amp;contentType=SupportManual&amp;amp;docIndexId=64255&amp;amp;prodTypeId=18964&amp;amp;prodSeriesId=4296010&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Note :- Assign points once your query as been answered&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Ishwar VenuGopal</description>
      <pubDate>Sun, 10 Oct 2010 13:05:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258331#M552125</guid>
      <dc:creator>Ishwar_1</dc:creator>
      <dc:date>2010-10-10T13:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: lvm concept</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258332#M552126</link>
      <description>thanks&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Oct 2010 06:07:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258332#M552126</guid>
      <dc:creator>sriprabhu</dc:creator>
      <dc:date>2010-10-11T06:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: lvm concept</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258333#M552127</link>
      <description>thanks</description>
      <pubDate>Mon, 11 Oct 2010 06:15:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/lvm-concept/m-p/5258333#M552127</guid>
      <dc:creator>sriprabhu</dc:creator>
      <dc:date>2010-10-11T06:15:51Z</dc:date>
    </item>
  </channel>
</rss>

