<?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 LVM versus FDISK in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218038#M51551</link>
    <description>&lt;BR /&gt;Can somebody help me compare LVM with FDISK ?&lt;BR /&gt;&lt;BR /&gt;I am using RHEL5 and I would be creating mount points or partitions to hold Oracle Databases and Oracle applications.&lt;BR /&gt;&lt;BR /&gt;Please give me advantage/disadvantage, strengh/weakness of FDISK and LVM.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,</description>
    <pubDate>Sat, 09 Jan 2010 14:33:38 GMT</pubDate>
    <dc:creator>Yaboto</dc:creator>
    <dc:date>2010-01-09T14:33:38Z</dc:date>
    <item>
      <title>LVM versus FDISK</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218038#M51551</link>
      <description>&lt;BR /&gt;Can somebody help me compare LVM with FDISK ?&lt;BR /&gt;&lt;BR /&gt;I am using RHEL5 and I would be creating mount points or partitions to hold Oracle Databases and Oracle applications.&lt;BR /&gt;&lt;BR /&gt;Please give me advantage/disadvantage, strengh/weakness of FDISK and LVM.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,</description>
      <pubDate>Sat, 09 Jan 2010 14:33:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218038#M51551</guid>
      <dc:creator>Yaboto</dc:creator>
      <dc:date>2010-01-09T14:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: LVM versus FDISK</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218039#M51552</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;use LVM.&lt;BR /&gt;&lt;BR /&gt;mikap</description>
      <pubDate>Sat, 09 Jan 2010 18:02:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218039#M51552</guid>
      <dc:creator>Michal Kapalka (mikap)</dc:creator>
      <dc:date>2010-01-09T18:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: LVM versus FDISK</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218040#M51553</link>
      <description>The standard x86 PC partition table (=what you'll be creating with FDISK) has a hard maximum limit of 2 TB. If your disk or RAID set is larger than that, you need to use something else, like LVM or Itanium-style GPT partitioning. Disks of 1 TB capacity already exist; within three years or so, I think the 2 TB limit will be a major annoyance (even more than it already is).&lt;BR /&gt;&lt;BR /&gt;In a 32-bit Linux OS, LVM can handle 16 TB; but if you use a 64-bit version of Linux (as you usually should with modern hardware), the limit is 8 Exabytes, i.e. effectively unlimited for most purposes.&lt;BR /&gt;&lt;BR /&gt;Unless you create a custom boot loader, FDISK partitioning is still required on x86 system disk. As far as I know, there is no bootloader yet that could boot from a LVM-only disk.&lt;BR /&gt;&lt;BR /&gt;LVM allows a Logical Volume to span multiple physical disks/RAID sets. If you run out of space on your current disk, just add a new disk to the system, use it to extend the volume group that needs more space, and add the necessary space to your logical volume. If you need to move your data to new disks and remove the old ones, you can use pvmove or LVM-level mirroring to migrate the data to the new disks. All this can be done while filesystems are mounted and applications are running.&lt;BR /&gt;&lt;BR /&gt;With FDISK, you can extend an existing partition only if there is free space on the disk immediately after the partition. So extending any partitions other than the last one on the disk will require moving partitions around, which cannot be done while the partition is mounted.&lt;BR /&gt;&lt;BR /&gt;FDISK-created Linux partitions are identifiable to other operating systems as "there is already a partition of some unknown type". If you use pvcreate to initialize the entire disk for LVM ("pvcreate /dev/sda"), other operating systems may not recognize that the disk is already in use. &lt;BR /&gt;&lt;BR /&gt;This may be an issue with SAN storage, when there is a possibility that your LUNs may be accidentally presented to another system if the SAN admin makes a mistake. In such an environment, it may be useful to create a simple FDISK partition that covers the whole LUN, and then use it with LVM ("pvcreate /dev/sda1"). This way the admin of the other system can easily notice that the LUN is already in use and ask the SAN admin to double-check.&lt;BR /&gt;&lt;BR /&gt;In short, I would always use LVM on data disks unless there is a specific reason *not* to do it.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Sat, 09 Jan 2010 21:58:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218040#M51553</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2010-01-09T21:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: LVM versus FDISK</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218041#M51554</link>
      <description>&amp;gt;As far as I know, there is no bootloader yet that could boot from a LVM-only disk.&lt;BR /&gt;&lt;BR /&gt;grub2 has LVM support, but I didn't tested it yet</description>
      <pubDate>Mon, 11 Jan 2010 14:07:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218041#M51554</guid>
      <dc:creator>Viktor Balogh</dc:creator>
      <dc:date>2010-01-11T14:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: LVM versus FDISK</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218042#M51555</link>
      <description>shalompeace: always choose a volume manager like LVM or VxVM over fdisk. That's so simple. (LVM is easier to manage than VxVM)</description>
      <pubDate>Mon, 11 Jan 2010 14:10:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218042#M51555</guid>
      <dc:creator>Viktor Balogh</dc:creator>
      <dc:date>2010-01-11T14:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: LVM versus FDISK</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218043#M51556</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Even to use lvm, you sometimes need to use fdisk first.&lt;BR /&gt;&lt;BR /&gt;In general, I use lvm for everything possible. If I add a new disk, I will use fdisk to prepare it and mark the disk as 8E a Linux partition. This is useful in telling contractors and temporary systems administrators, "Yo, its LVM, use lvm!!!!"&lt;BR /&gt;&lt;BR /&gt;LVM should be used wherever possible, because you can resize file systems or logical volumes on the fly, without a complete reconfiguration of the system or complex dd commands.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 11 Jan 2010 14:38:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218043#M51556</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-01-11T14:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: LVM versus FDISK</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218044#M51557</link>
      <description>&amp;gt;If your disk or RAID set is larger than &amp;gt;2T, you need to use something else, like &amp;gt;LVM&lt;BR /&gt;&lt;BR /&gt;but before use LVM I have to create physical partition first, isn't it?&lt;BR /&gt;&lt;BR /&gt;(sorry for hijacking thead)</description>
      <pubDate>Thu, 14 Jan 2010 09:58:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218044#M51557</guid>
      <dc:creator>Vitaly Karasik_1</dc:creator>
      <dc:date>2010-01-14T09:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: LVM versus FDISK</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218045#M51558</link>
      <description>Thank you for your contributions !</description>
      <pubDate>Thu, 14 Jan 2010 12:27:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-versus-fdisk/m-p/5218045#M51558</guid>
      <dc:creator>Yaboto</dc:creator>
      <dc:date>2010-01-14T12:27:41Z</dc:date>
    </item>
  </channel>
</rss>

