Adding a New Disk to a Fedora Volume Group and Logical Volume
Previous | Table of Contents | Next |
Adding a New Disk Drive to a Fedora Linux System | Adding and Managing Fedora Swap Space |
Take your Fedora Linux Skills to the Next Level |
In the previous chapter we looked at adding a new disk drive to a Fedora system, creating a partition and file system and then mounting that file system so that the disk can be accessed. An alternative to creating fixed partitions and file systems is to use Logical Volume Management (LVM) to create logical disks made of space from one or more physical disks or partitions. The advantage of using LVM is that space can be added to or removed from logical volumes as needed without the need to spread data over multiple file systems.
Let us take, for example, the root (/) file system. Without LVM this filesystem would be created with a certain size when the operating is installed. If a new disk drive is installed there is no way to allocate any of that space to the / file system. The only option would be to create new file systems on the new disk and mount it at a particular mount point. In this scenario you would have plenty of space on the new file system but the / file system would still be nearly full. The only option would be to move files onto the new file system. With LVM, the new disk (or part thereof) can be assigned to the logical volume containing the root file system thereby extending the space available.
In this chapter we will look at the steps necessary to add new disk space to both a volume group and a logical volume for the purpose of adding additional space to the root file system.
An Overview of Logical Volume Management (LVM)
LVM provides a flexible and high level approach to managing disk space. Instead of each disk drive being split into partitions of fixed sizes onto which fixed size file systems are created, LVM provides a way to group together disk space into logical volumes which can be easily resized and moved. In addition LVM allows administrators to carefully control disk space assigned to different groups of users by allocating distinct volume groups or logical volumes to those users. When the space initially allocated to the volume is exhausted the administrator can simply add more space without having to move the user files to a different file system.
LVM consists of the following components:
Volume Group (VG)
The Volume Group is the high level container which holds one or more logical volumes and physical volumes.
Physical Volume (PV)
A physical volume represents a storage device such as a disk drive or other storage media.
Logical Volume (LV)
A logical volume is the equivalent to a disk partition and, as with a disk partition, can contain a file system.
Physical Extent (PE)
Each physical volume (PV) is divided into equal size blocks known as physical extents.
Logical Extent (LE)
Each logical volume (LV) is divided into equal size blocks called logical extents.
Let's suppose we are creating a new volume group called VolGroup001. This volume group needs physical disk space in order to function so we allocate three disk partitions /dev/sda1, /dev/sdb1 and /dev/sdb2. These become physical volumes in VolGroup001. We would then create a logical volume called LogVol001 within the volume group made up of the three physical volumes.
If we run out of space in LogVol001 we simply add more disk partitions as physical volumes and assign them to the volume group and logical volume.
Getting Information and Logical Volumes
As an example of using LVM with Fedora we will work through an example of adding space to the / filesystem of a standard Fedora installation. Anticipating the need for flexibility in the sizing of the root partition, Fedora sets up the / file system as a logical volume (called lv_root) within a volume group called vg_name where name corresponds to the hostname of the Fedora system. Before making any changes to the LVM setup it is important to gather information.
Running the mount command on Fedora system will typically show output similar to the following:
/dev/mapper/vg_kvmfed11-lv_root on / type ext4 (rw) proc on /proc type proc (rw) sysfs on /sys type sysfs (rw) devpts on /dev/pts type devpts (rw) /dev/vda1 on /boot type ext3 (rw) tmpfs on /dev/shm type tmpfs (rw,rootcontext="system_u:object_r:tmpfs_t:s0") none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw) gvfs-fuse-daemon on /home/linus/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,user=linus)
Information about the volume group can be obtained using the /usr/sbin/vgdisplay command:
# vgdisplay --- Volume group --- VG Name vg_kvmfed11 System ID Format lvm2 Metadata Areas 1 Metadata Sequence No 3 VG Access read/write VG Status resizable MAX LV 0 Cur LV 2 Open LV 2 Max PV 0 Cur PV 1 Act PV 1 VG Size 7.80 GB PE Size 4.00 MB Total PE 1997 Alloc PE / Size 1997 / 7.80 GB Free PE / Size 0 / 0 VG UUID K7X0Pg-2tFk-Gn8s-Ochi-bsbI-3p6Z-hG4qq7
As we can see the in the above example, vg_kvmfed11 has a physical extend size of 4.00MB and has a total of 7.80GB available for allocation to logical volumes. Currently 1997 physical extents are allocated equaling the total 7.80GB capacity. If we want to increase the space allocated to any logical volumes in vg_kvmfed11 we will need to add one or more physical volumes.
The same information can be viewed graphically using the Logical Volume Manager tool, accessed by selecting the System->Administration->Logical Volume Management menu option:
Information about logical volumes in a volume group may similarly be obtained using the lvdisplay command:
# lvdisplay --- Logical volume --- LV Name /dev/vg_kvmfed11/lv_root VG Name vg_kvmfed11 LV UUID R3bZRd-NcNo-wUue-qaW8-DDQD-uzIe-we3X9o LV Write Access read/write LV Status available # open 1 LV Size 6.80 GB Current LE 1741 Segments 1 Allocation inherit Read ahead sectors auto - currently set to 256 Block device 253:0 --- Logical volume --- LV Name /dev/vg_kvmfed11/lv_swap VG Name vg_kvmfed11 LV UUID abOTsB-YSMX-MNvh-1HhI-uNX5-YPj8-nc3WbT LV Write Access read/write LV Status available # open 1 LV Size 1.00 GB Current LE 256 Segments 1 Allocation inherit Read ahead sectors auto - currently set to 256 Block device 253:1
As shown in the above example 6.8GB of the space in volume group vg_kvmfed11 is allocated to logical volume lv_root (for the / file system) and 1.00GB to lv_swap (for swap space). The same information may be obtained from the graphical Logical Volume Management tool by selecting the Logical View:
Now that we know what space is being used it is often helpful to understand which devices are providing the space (in other words which devices are being used as physical volumes). To obtain this information we need to run the pvdisplay command:
# pvdisplay --- Physical volume --- PV Name /dev/vda2 VG Name vg_kvmfed11 PV Size 7.80 GB / not usable 1.35 MB Allocatable yes (but full) PE Size (KByte) 4096 Total PE 1997 Free PE 0 Allocated PE 1997 PV UUID VN332E-sYOx-Kkm9-EE8b-4wKs-ln9D-qiiJZ6
Clearly the space controlled by logical volume vg_kvmfed11 is provided via a physical volume located on /dev/vda2. Selecting the Physical View from the graphical tool results in the following representation of the same information:
Now that we know a little more about our LVM configuration we can embark on the process of adding space to the volume group and the logical volume contained within.
Adding Additional Space to a Fedora Volume Group from the Command Line
Just as with the previous steps to gather information about the current Logical Volume Management configuration of a Fedora system, changing this configuration can be performed both from the command line and from within the graphical volume management tool. In this section we will focus on the use of command line tools.
In the remainder of this chapter we will assume that a new disk has been added to the system and that it is being seen by the operating system as /dev/sdb. We shall also assume that this is a new disk that does not contain any existing partitions. If existing partitions are present they should be backed up and then the partitions deleted from the disk using the fdisk utility.
The first step is to convert this disk into a physical volume. This is achieved using the pvcreate command:
pvcreate /dev/sdb Physical volume "/dev/sdb" successfully created
With the physical volume created we now need to add it to the volume group (in this case vg_kvmfed11) using the vgextend command:
vgextend vg_kvmfed11 /dev/sdb Volume group "vg_kvmfed11" successfully extended
The new physical volume has now been added to the volume group and is ready to be allocated to a logical volume. To do this we run the lvextend tool providing the size by which we wish to extend the volume. In this case we want to extend the size of lv_root by 1.9GB. Note that we need to provide the path to the logical volume which can be obtained from the lvdisplay command (in this case /dev/vg_kvmfed11/lv_root):
lvextend -L+1.9G /dev/vg_kvmfed11/lv_root Rounding up size to full physical extent 1.90 GB Extending logical volume lv_root to 8.70 GB Logical volume lv_root successfully resized
The last step in the process is to resize the file system residing on the logical volume so that it uses the additional space. Since we are assuming a default Fedora installation here this can be achieved using the resize2fs command:
# resize2fs /dev/vg_kvmfed11/lv_root resize2fs 1.41.4 (27-Jan-2009) Filesystem at /dev/vg_kvmfed11/lv_root is mounted on /; on-line resizing required old desc_blocks = 1, new_desc_blocks = 1 Performing an on-line resize of /dev/vg_kvmfed11/lv_root to 2281472 (4k) blocks. The filesystem on /dev/vg_kvmfed11/lv_root is now 2281472 blocks long.
Once the resize completes the file system will have been extended to use the additional space provided by the new disk drive. All this has been achieved without moving a single file. As far as any users on the system are concerned nothing has changed (except that there is now more disk space).
Take your Fedora Linux Skills to the Next Level |
Previous | Table of Contents | Next |
Adding a New Disk Drive to a Fedora Linux System | Adding and Managing Fedora Swap Space |