A default installation of Fedora will use all available free space to create two new partitions: a small /boot, and all the remaining space for a single LVM physical volume (PV). This sometimes poses problems for those who later wish to make room for more regular partitions, to install Another Operating System into, for example. The short solution: reinstall Fedora with custom sizes to leave free space; the long solution: this howto.
Applicable to Fedora Versions
- All
Requirements
- A default installation of Fedora using LVM (without LUKS encryption)
- A desire to do things the hard way.
Doing the Work
Summary of steps below: Boot rescue and skip mounting, activate lvm (vgchange -ay), fsck root filesystem, shrink root filesystem (resize2fs), shrink root logical volume (lvresize), lvremove LogVol01 swap LV and add it back to allow pvresize to succeed, shrink PV (pvresize), shrink partition (parted), and finally create new partitions in the free space, now or later.
For the example below, assume we installed Fedora onto all of an 80GB drive, and now we want to squish Fedora down to 50GB to make room for a new 30GB partition <i>after it</i>.
- Boot into rescue mode and on the last step make sure to SKIP mounting your filesystems under /mnt/sysimage
- Activate LVM
1lvm vgchange -a y - fsck your single, large root filesystem on LogVol00
1fsck -fC /dev/VolGroup00/LogVol00 - Shrink your (ext3) filesystem inside the LogVol00 container BEFORE shrinking its container
1resize2fs -p /dev/VolGroup00/LogVol00 50G - Shrink the LogVol container to match
1lvm lvresize /dev/VolGroup/LogVol00 --size 50G -
There is now enough free physical space available (
lvm pvs
) to shrink the physical volume by that much in order to make room for a new partition of that size or smaller. Unfortunately, the current implementation of “pvresize” is lacking – from the manpage: “pvresize will refuse to shrink PhysicalVolume if it has allocated extents after where its new end would be. In the future, it should relocate these elsewhere in the volume group if there is sufficient free space, like pvmove does.“Because of this limitation, it is necessary to temporarily remove your LogVol01 swap LV, which is still physically allocated at the very end of your PV, then add it back such that it’s newly located immediately after the smaller LogVol00 nearer to the start of the PV (and partition).
You first must determine how large your current LogVol01 swap is so you can recreate it with the same size. Take note of the “LSize” column for LogVol01 from the output of:
1lvm lvs<br />Assuming your swap was “2.00G”, for example, do:
1lvm lvremove /dev/VolGroup00/LogVol01<br />lvm lvcreate --size 2G --name LogVol01 VolGroup00<br />mkswap /dev/VolGroup00/LogVol01<br /> - Shrink the Physical Volume
First, determine how much you can shrink it, by running:
1sh-3.2# <strong>lvm pvs</strong><br /> <strong>PV</strong> VG Fmt Attr <strong>PSize PFree</strong><br /> <strong>/dev/sda2</strong> VolGroup00 lvm2 a- <strong>80.00G 71.00G </strong><br />Take note of the PV to be resized, and of PSize and PFree. You can now resize your /dev/sda2 PV down to a final size of anything between 9G and 80G. We want to shrink down to 50G in this example, leaving 30G free for later.
And now for the pvresize:
1lvm pvresize /dev/sda2 --setphysicalvolumesize 50G<br />If this step fails, it’s probably because you’re trying to shrink too small, and/or there are still allocated extents — other than swap, which you moved in the step above — after where the new tail end would be. A future version of pvresize will automatically move those to earlier free space as needed. (As an alternative, if you have lots of free space on another drive, you could pvcreate there, then pvmove temporarily, then pvresize, and pvmove back.)
- FINALLY – Shrink the PARTITION containing the shrunk PV to match its new size. WARNING: This is the trickiest bit to get right due to unit conversion and conventions (GB vs GiB, rounding error, etc), so we’ll be using the SECTOR unit (512bytes) as well as giving ourselves a margin of error. It also involves a tiny bit of critical advanced addition arithmetic.
Display the PV sizes in SECTORS and take note of the smaller PSize:
1lvm pvs --units s<br /> - OPTIONAL STEP: pvresize, lvresize, and resize2fs once more, in that order, but without an explicit size given, such that you can safely grow it back up into the small safety margin you used above. Skip it.
- Verify you didn’t make a major oops truncating something by running fsck again:
1fsck -fC /dev/VolGroup00/LogVol00 - All done. You now have some free unpartitioned space outside of LVM to play with.
Display the partition Size in SECTORS using parted and take note of the Start sector and partition Number of the partition with “lvm” in the Flags column:
1 |
parted /dev/sda unit s print<br /> |
POINT OF NO RETURN – HAVE BACKUPS
So now we need to nuke the old, large partition from the partition table, and immediately recreate it with the exact same Start sector, but with a newer, shorter End sector. To calculate the new End sector, ADD the partition Start sector to the PV PSize, and then add a safety margin of around 131072 sectors (64MB) to that.
Nuke it
1 |
parted /dev/sda rm 2<br /> |
Recreate it smaller + safety margin. NOTE: remeber to append the letter “s” to your values to qualify them as sectors. (e.g. “123s”)
1 |
parted /dev/sda mkpart primary 401625s 105390297s<br />parted /dev/sda set 2 lvm on<br />parted /dev/sda print<br />fdisk -l /dev/sda<br /> |
Almost done.
More Information
Disclaimer
We
test this stuff on our own machines – really we do – but you may run into
problems; if you do, come to #fedora on irc.freenode.net