0

parted print all result

I have a 10tb hdd with 3 partitions and one flag (not sure what that means). The flag is set as 215gb and that's all i'm able to access in the filesystem. I'm running Ubuntu Server 20.04 and i would really like to access the rest of this iron wolf HDD. Any help would be greatly appreciated (The best fix would be one that wouldn't make me format the drive and loose my data)

1 Answers1

4

You have LVM. A partition manager is limited in what it will show about logical volumes.

See what LVM looks like with a quick pvs; vgs; lvs;. Probably whomever set this up did a smart thing and did not fully allocate space to volumes.

If PVs are not the full size of the partition/disk, fix that with pvresize.

Create new LVs with something like lvcreate --name lv --size 100g ubuntu-vg Create file system on that, and mount it where desired.


A hundreds of MB fat32 partition with the esp flag is an EFI system partition. A similarly small partition formatted ext4 on an otherwise LVM system is probably /boot.

John Mahowald
  • 30,009
  • 1
  • 17
  • 32