LVM 是一个应用于 Linux 内核的本地卷管理器 (Logical Volume Manager)。 使用 LVM 你可以抽象你的存储空间,并且可以有很容易更改的“虚拟分区”。LVM的基本模块如下:
使用 LVM 你可以比正常的硬盘分区更容易的管理硬盘分区(逻辑卷)。例如,你可以:
示例:
两块物理硬盘 硬盘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).
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.
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.
在开始安装arch之前(即输入:/arch/setup之前),先使用cfdisk等工具来规划分区。因为grub不能从LVM逻辑卷引导启动(版本1.0时),所以需要先创建一个/boot引导区,100MB应该够了。另外的解决办法就是使用lilo或者高于1.95版本的grub。
接下来,要创建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.
接下来,要加载使用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
创建完成物理卷之后,就是开始创建卷组了。 如果有两个以上的物理卷pv(比如下面例子,有两个/dev/sda2和/dev/sdb1),首先必须先在其中一个创建一个卷组vg,然后让该卷组vg扩大到其他所有的物理卷pv(这里假设你只使用一个卷组vg来管理其他所有的物理卷pv。):
# vgcreate VolGroup00 /dev/sda2 # vgextend VolGroup00 /dev/sdb1
其中,“VolGroup00”名字换成你自己起的名字即可。接下来看看卷组情况:
# vgdisplay
创建完卷组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 时你需要特别注意的地方。(括号里是相关的安装过程中的菜单):
/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 the lvm2
and udev
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 use lvresize
instead of lvreduce
.
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 with cfdisk
). 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 to pvmove
:
# 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可以给系统创建一个快照,由于使用了COW (copy-on-write) 策略,相比传统的备份更有效率。 The initial snapshot you take simply contains hard-links to the inodes of your actual data. So long as your data remains unchanged, the snapshot merely contains its inode pointers and not the data itself. Whenever you modify a file or directory that the snapshot points to, LVM automatically clones the data, the old copy referenced by the snapshot, and the new copy referenced by your active system. 这样的话,如果你只修改了不超过2G数据(包括原始的和快照的),你将可以只使用2G的空间,就能快照一个有35G的数据的系统。
You create snapshot logical volumes just like normal ones.
# lvcreate --size 100M --snapshot --name snap01 /dev/mapper/vg0-pv
With that volume, you may modify less than 100M of data, before the snapshot volume fills up.
Todo: scripts to automate snapshots of root before updates, to rollback... updating menu.lst to boot snapshots (separate article?)
snapshots are primarily used to provide a frozen copy of a filesystem to make backups; a backup taking two hours provides a more consistent image of the filesystem than directly backing up the partition.
try preceeding commands with lvm like this:
# 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.
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:
# 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>
# vgscan # vgchange -ay <volume group name>
archwiki的其他关于LVM的文章:
外部资源: