Chapter 2
Advanced storage
Updated July 3, 2026
LVM from Part II gave you logical volumes instead of fixed partitions. Now let us see what that buys you in practice: grow a volume without unmounting the filesystem, and take a snapshot before a risky operation. After that come disk mirroring with mdadm, swap, and filesystem repair.
The key rule of this chapter: first the volume grows, then the filesystem inside it. These are two separate layers, and each one grows with its own command.
Say the group datavg has free space and the volume files is running short. First hand the volume another 10 gigabytes:
$ sudo lvextend -L +10G /dev/datavg/files # +10G on top of the current sizeThe volume is bigger now, but the filesystem inside still thinks it is the old size. You ha
The rest of this chapter is part of a paid course
You are reading the open part. Buy the course to read the whole chapter.