How to add new disk via LVM:
Sulutions
- Add new physical disk. Boot.
# pvscanThis will show you the current physical volumes.
# fdisk /dev/sdbAdd the disk to your machine as a primary partition. Partition type: “
8e(LVM)”. Obviously/dev/sdbmay be different on your system.# pvcreate /dev/sdb1This creates a new physical LVM volume on our new disk.
# vgextend VolGroup00 /dev/sdb1Add our new physical volume to the volume group:
VolGroup00. Again, this group name may by different for you, but this is what Redhat & CentOS assigns by default when you install your system.# pvscanYou should see the new physical volume assigned to VolGroup00.
# lvextend -L+40G /dev/VolGroup00/LogVol00This increases the size of the logical volume our root partition resides in. Change the
-Lflag as appropriate.
We’ve just added 40GB to the logical volume used by the root partition. Sweet as. Now we need to resize the file system to utilize the additional space.
- Reboot into rescue mode using your CentOS CDROM.
From memory this involves typing linux rescue as your boot option.
- When prompted, skip the mounting of system partitions.
# lvm vgchange -a yThis command makes your LVM volumes accessible.
# e2fsck -f /dev/VolGroup00/LogVol00Run a file system check, the -f flag seems necessary. No idea what we do if the returns an error?
# resize2fs /dev/VolGroup00/LogVol00Without any parameters resize2fs will just increase the file system to the max space available.
Reboot and your root partition is now 40GB lager, spanning multiple disks. Yay.


