LVM 是一个应用于 Linux 内核的本地卷管理器 (Logical Volume Manager)。 使用 LVM 你可以抽象你的存储空间,并且可以有很容易更改的“虚拟分区”。LVM的基本模块如下:
介绍
- Physical volume (PV): 物理卷,例如一个硬盘,或一个Software RAID设备; 硬盘的一个分区 (或者甚至硬盘本身或者回环文件),在它上面可以建立卷组。It has a special header and is divided into physical extents. Think of physical volumes as big building blocks which can be used to build your hard drive.
- Volume group (VG): 卷组,将一组物理卷收集为一个管理单元;Group of physical volumes that are used as storage volume (as one disk). They contain logical volumes. Think of volume groups as hard drives.
- Logical volume(LV): 逻辑卷,等同于传统分区,可看作便准的块设备,以容纳文件系统;A "virtual/logical partition" that resides in a volume group and is composed of physical extents. Think of logical volumes as normal partitions.
- Physical extent (PE): 物理块,划分物理卷的数据块;A small part of a disk (usually 4MB) that can be assigned to a logical Volume. Think of physical extents as parts of disks that can be allocated to any partition.
使用 LVM 你可以比正常的硬盘分区更容易的管理硬盘分区(逻辑卷)。例如,你可以:
- 使用卷组(VG),使众多硬盘空间看起来像一个大硬盘。
- 使用逻辑卷(LV),可以创建跨越众多硬盘空间的分区。
- 可以根据需要,对分区(LV)和硬盘空间(VG)进行创建、删除、调整大小等操作。(it doesn't depend on position of the logical volumes within volume groups as with normal partitions)
- Resize/create/delete partitions(LV) and disks(VG) online (filesystems on them still need to be resized, but some support online resizing)
- Name your disks(VG) and partitions(LV) as you like
- Create small partitions(LV) and resize them "dynamically" as they get more filled (growing must be still done by hand, but you can do it online with some filesystems)
- ...
示例:
两块物理硬盘 硬盘1 (/dev/sda): _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |分区1 50GB (Physical volume) |分区2 80GB (Physical volume) | |/dev/sda1 |/dev/sda2 | |_ _ _ _ _ _ _ _ _ _ _ _ _ _ |_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ | 硬盘2 (/dev/sdb): _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |分区1 120GB (Physical volume) | |/dev/sdb1 | | _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ __ _ _|
LVM方式 卷组VG1 (/dev/MyStorage/ = /dev/sda1 + /dev/sda2 + /dev/sdb1): _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |逻辑卷lv1 15GB |逻辑卷lv2 35GB |逻辑卷lv3 200GB | |/dev/MyStorage/rootvol|/dev/MyStorage/usrvol |/dev/MyStorage/homevol | |_ _ _ _ _ _ _ _ _ _ _ |_ _ _ _ _ _ _ _ _ _ _ _ _ |_ _ _ _ _ _ _ _ _ _ _ _ _ _ _|
总而言之: With LVM you can use all your storage space as one big disk (volume group) and have more flexibility over your partitions (logical volumes).
Advantages
Here are some things you can do with LVM that you can't (or can't do easily) with just mdadm, MBR partitions, GPT partitions, parted/gparted and a file-level tool like rsync.
- Online/live partition resizing
- No need for an extended partition (not relevant for GPT)
- Resize partitions regardless of their order on disk (no need to ensure surrounding available space)
- Online/live migration of partitions being used by services without having to restart services
These can be very helpful in a server situation, desktop less so, but you must decide if the features are worth the abstraction.
安装
在做其他工作之前,我们需要加载合适的模块:
# modprobe dm-mod
如果你已经安装好了操作系统,并只是想利用增加或尝试一个LVM分区,请跳到这 partition disks.
在 LVM 上安装 Arch Linux
在开始安装arch之前(即输入:/arch/setup之前),先使用cfdisk等工具来规划分区。因为grub不能从LVM逻辑卷引导启动(版本1.0时),所以需要先创建一个/boot引导区,100MB应该够了。另外的解决办法就是使用lilo或者高于1.95版本的grub。
创建 LVM 分区
接下来,要创建LVM将使用的分区。文件类型使用'Linux LVM',所以使用分区id 0x8e (文件系统类型:8E)。在需要使用LVM的每块硬盘上,各创建一个LVM分区。 Your logical volumes will reside inside these partitions so size them accordingly. If you will use only LVM and no other external partitions, use all of free space on each disk.
创建物理卷(PV)
接下来,要加载使用lvm所需的相应模块:
# modprobe dm-mod
用命令'fdisk -l'查看那个分区的文件系统类型是'Linux LVM',然后在其上创建一个物理卷组pv(假设是/dev/sda2),输入如下命令:
# pvcreate /dev/sda2
Substitute /dev/sda2 with all your partitions to create physical volumes on all of them. This command creates a header on each partition so it can be used for LVM.查看物理卷情况:
# pvdisplay
创建卷组(VG)
创建完成物理卷之后,就是开始创建卷组了。 如果有两个以上的物理卷pv(比如下面例子,有两个/dev/sda2和/dev/sdb1),首先必须先在其中一个创建一个卷组vg,然后让该卷组vg扩大到其他所有的物理卷pv(这里假设你只使用一个卷组vg来管理其他所有的物理卷pv。):
# vgcreate VolGroup00 /dev/sda2 # vgextend VolGroup00 /dev/sdb1
其中,“VolGroup00”名字换成你自己起的名字即可。接下来看看卷组情况:
# vgdisplay
创建逻辑卷(LV)
创建完卷组vg之后,就可以开始创建逻辑卷了。输入下面命令:
# lvcreate -L 10G VolGroup00 -n lvolhome
其中10G是大小,VolGroup00是卷组vg名称,lvolhome是逻辑卷lv名称,这些都可以根据你自己喜欢设定,以后可以使用/dev/mapper/Volgroup00-lvolhome 或者 /dev/VolGroup00/lvolhome来操作.
查看逻辑卷情况:
# lvdisplay
建立文件系统与挂载逻辑卷
Your logical volumes should now be located in /dev/mapper/ and/dev/YourVolumeGroupName. If you can't find them use the next commands to bring up the module for creating device nodes and to make volume groups availabile:
# modprobe dm-mod # vgscan # vgchange -ay
Now you can create filesystems on logical volumes and mount them as normal partitions (if you are installing Arch linux, skip this step):
# mkfs.ext3 /dev/mapper/VolGroup00-lvolhome # mount /dev/mapper/VolGroup00-lvolhome /home
如果你正在安装Archlinux,到 Prepare Hard Drive 这一步时,转到第三项 Set Filesystem Mountpoints ,请在进入安装前,阅读下面的重要部分 !
重要
有几点在使用/安装带有 LVM 的 Arch Linux 时你需要特别注意的地方。(括号里是相关的安装过程中的菜单):
设置文件系统挂载点
- 当选择挂载点时(除了/boot),千万不要选择实际存在的逻辑卷(比如:
/dev/sda2
),只需选择由lv创建的逻辑卷(比如:/dev/mapper/Volgroup00-lvolhome
)。
配置系统
For late-boot activation (non-root-filesystem) of volume groups, enable the lvm
unit file,
# systemctl enable lvm
If you are using LVM on an encrypted device, use this instead:
# systemctl enable lvm-on-crypt
Or, if you still use sysvinit, modify USELVM
appropriately:
/etc/rc.conf:
USELVM="yes"
For early-boot activation of volume groups (namely for root filesystem containers), you'll need to make sure thelvm2
andudev
mkinitcpio hooks are enabled.
/etc/mkinitcpio.conf:
HOOKS="base udev ... lvm2 filesystems"
Also make sure the dm_mod
module is enabled.
/etc/mkinitcpio.conf:
MODULES="dm_mod ..."
You will need to rebuild the initramfs to commit any changes you made.
配置
扩大逻辑卷
To grow a logical volume you first need to grow the logical volume and then the filesystem to use the newly created free space. Let's say we have a logical volume of 15GB with ext3 on it and we want to grow it to 20G. We need to do the following steps:
# lvextend -L 20G VolGroup00/lvolhome (or lvresize -L +5G VolGroup00/lvolhome) # resize2fs /dev/VolGroup00/lvolhome
You may use lvresize insted of lvextend.
If you want to fill all the free space on a volume group use the next command:
# lvextend -l +100%FREE VolGroup00/lvolhome
缩小逻辑卷
Because your filesystem is probably as big as the logical volume it resides on, you need to shrink the filesystem first and then shrink the logical volume. Depending on your filesystem, you may need to unmount it first. Let us say we have a logical volume of 15GB with ext3 on it and we want to shrink it to 10G. We need to do the following steps:
# resize2fs /dev/VolGroup00/lvolhome 9G # lvreduce -L 10G VolGroup00/lvolhome (or lvresize -L -5G VolGroup00/lvolhome) # resize2fs /dev/VolGroup00/lvolhome
Here we shrunk the filesystem more than needed so that when we shrunk the logical volume we did not accidentally cut off the end of the filesystem. After that we normally grow the filesystem to fill all free space left on logical volume. You may uselvresize
instead oflvreduce
.
Remove logical volume
First, find out the name of the logical volume you want to remove. You can get a list of all logical volumes installed on the system with:
# lvs
Next, look up the mountpoint for your chosen logical volume...:
$ df -h
... and unmount it:
# umount /your_mountpoint
Finally, remove the logical volume:
# lvremove /dev/yourVG/yourLV
Confirm by typing "y" and you are done.
Dont forget, to update /etc/fstab:
# sudo nano /etc/fstab
You can verify the removal of your logical volume by typing "lvs" as root again (see first step of this section).
添加分区到卷组中
To add a partition to your volume group you must first make its type 'Linux LVM' (for example withcfdisk
). Then you need to create a physical volume on it and extend the volume group over it:
# pvcreate /dev/sdb1 # vgextend VolGroup00 /dev/sdb1
Now you have free space in your volume group that can be used by logical volumes in this group.
从卷组中移除卷
All of the data on that partition needs to be moved to another partition. Fortunately, LVM makes this easy:
# pvmove /dev/sdb1
If you want to have the data on a specific physical volume, specify that as the second argument topvmove
:
# pvmove /dev/sdb1 /dev/sdf1
Then the physical volume needs to be removed from the volume group:
# vgreduce myVg /dev/sdb1
Or remove all empty physical volumes:
# vgreduce --all vg0
And lastly, if you want to use the partition for something else, and want to avoid LVM thinking that the partition is a physical volume:
# pvremove /dev/sdb1
快照功能
介绍
LVM可以给系统创建一个快照,由于使用了写入时复制(copy-on-write) 策略,相比传统的备份更有效率。 初始的快照只有关联到实际数据的inode的实体链接(hark-link)而已。只要实际的数据没有改变,快照就只会包含指向数据的inode的指针,而非数据本身。一旦你更改了快照对应的文件或目录,LVM就会自动拷贝相应的数据,包括快照所对应的旧数据的拷贝和你当前系统所对应的新数据的拷贝。这样的话,只要你修改的数据(包括原始的和快照的)不超过2G,你就可以只使用2G的空间对一个有35G数据的系统创建快照。
配置
你可以像创建普通逻辑卷一样创建快照逻辑卷。
# lvcreate --size 100M --snapshot --name snap01 /dev/mapper/vg0-pv
你可以修改少于100M的数据直到该快照逻辑卷空间不足为止。
Todo: scripts to automate snapshots of root before updates, to rollback... updating menu.lst to boot snapshots (separate article?)
快照可以提供文件系统的冻结副本,主要被用来做备份;一份需要两小时才能完成的(快照)备份比直接备份分区更能保证文件系统映像的一致性。
常见问题
LVM 命令不起作用
- 加载以下模块:
# modprobe dm_mod
正常情况下,dm_mod
模块应当被自动加载。假如该模块无法被自动加载,你可以试着修改/etc/mkinitcpio.conf
:
/etc/mkinitcpio.conf:
MODULES="dm_mod ..."
你需要重建initramfs来提交你对/etc/mkinitcpio.conf
的更改。
- 测试以lvm开头的命令是否可以被正确执行:
# lvm pvdisplay
设定文件系统挂载点的页面不显示逻辑卷
If you are installing on a system where there is an existing volume group, you may find that even after doing "modprobe dm-mod" you don't see the list of logical volumes.
In this case, you may also need to do:
# vgchange -ay <volgroup>
in order to activate the volume group and make the logical volumes available.
Receiving Input/Output Errors after plugging in a removable device with LVM partitions
Symptoms:
~$ sudo vgscan Reading all physical volumes. This may take a while... /dev/backupdrive1/backup: read failed after 0 of 4096 at 319836585984: Input/output error /dev/backupdrive1/backup: read failed after 0 of 4096 at 319836643328: Input/output error /dev/backupdrive1/backup: read failed after 0 of 4096 at 0: Input/output error /dev/backupdrive1/backup: read failed after 0 of 4096 at 4096: Input/output error Found volume group "backupdrive1" using metadata type lvm2 Found volume group "networkdrive" using metadata type lvm2
Cause:
- Removing an external LVM drive without deactivating the volume group(s) first. Before you disconnect, make sure to:
# vgchange -an <volume group name>
Fix: (assuming you already tried to activate the volume group with vgchange -ay <vg>, and are receiving the Input/output errors
# vgchange -an <volume group name>
- Unplug the external drive and wait a few minutes
# vgscan # vgchange -ay <volume group name>
技巧
更多资源
archwiki的其他关于LVM的文章:
外部资源: