4

I was following this tutorial found here: How to set up multiple hard drives as one volume?

Which was working out great however i have a 3TB drive and every time i create the partition (whether it be via fdisk or gparted), after i start creating the volumes in LVM, my partition is re-sized to 2TB and the partition table becomes msdos which doesn't allow me to create any more partitions or to extend the current partition.

Is there a way that i can get a 3TB drive working with LVM?

Thanks, Adam

Adam Nygate
  • 131
  • 1
  • 2
  • 8

4 Answers4

8

It seems that by creating a partition to use as a physical volume in LVM, we're limited to a 2TB volume size. This is due to the limitations in the legacy MSDOS partition table system managed by fdisk and why one should use GPT.

Fortunately, LVM also understands plain devices without a partition table. This has the drawback that you'll have to use the whole device as physical volume, but that's exactly what I want to achieve.

To erase the current partition table execute the following command (Warning: this effectively erases all contents on the disk!):

sudo dd if=/dev/zero of=PhysicalVolume bs=512 count=1

replacing PhysicalVolume with your device path, e.g. /dev/sdb. Then run

sudo partprobe

to let the kernel re-read the new now non-existing partition table.

Now actually format it as an LVM physical volume:

sudo pvcreate PhysicalVolume

(again, replace PhysicalVolume with your device path)

This is based on the information mentioned in the manpage of pvcreate:

DESCRIPTION
       pvcreate initializes PhysicalVolume for later use by the Logical Volume
       Manager  (LVM).   Each  PhysicalVolume  can  be a disk partition, whole
       disk, meta device, or loopback file.   For  DOS  disk  partitions,  the
       partition  id  should  be  set  to 0x8e using fdisk(8), cfdisk(8), or a
       equivalent.  For whole disk devices only the partition  table  must  be
       erased, which will effectively destroy all data on that disk.  This can
       be done by zeroing the first sector with:

       dd if=/dev/zero of=PhysicalVolume bs=512 count=1
gertvdijk
  • 69,427
Adam Nygate
  • 131
  • 1
  • 2
  • 8
1

You can use gdisk for partitions bigger than 2TB.

Example:

# gdisk /dev/xvdk
GPT fdisk (gdisk) version 0.8.6

Partition table scan:   
  MBR: not present          
  BSD: not present       
  APM: not present                                         
  GPT: not present                

Creating new GPT entries.

Command (? for help): n  

Partition number (1-128, default 1):     

First sector (34-12582911966, default = 2048) or {+-}size{KMGTP}: 

Last sector (2048-12582911966, default = 12582911966) or {+-}size{KMGTP}: 

Current type is 'Linux filesystem'

Hex code or GUID (L to show codes, Enter = 8300): 8e00

Changed type of partition to 'Linux LVM'

That will create LVM partition that will occupy all space on given physical volume.

Credit goes to nixCraft:
Linux Creating a Partition Size Larger Than 2TB

look3y
  • 111
1

FWIW, GPT fdisk (gdisk, sgdisk, and cgdisk) can convert from MBR to GPT, with certain caveats about where partitions are placed. Learning about GPT will be necessary sooner or later, so you might as well do it now. Using the whole disk as a PV also works, but it has drawbacks of its own. Most importantly, a disk utility that's unfamiliar with LVM could misbehave when it sees a "raw" PV instead of a partition table. This could have unknown consequences in the future.

Rod Smith
  • 45,120
  • 7
  • 66
  • 108
0

This is quite easy using gparted. You can set the partition table as a few different types. GPT will allow you to create partitions greater than 2TB

Caustic
  • 749