我们知道可以使用vgcreate创建组,并使用lvcreate创建卷。该卷将是/ dev / mapper / $ group / $ volume,但如果要在$ dir / mapper / $ group / $ volume中创建该卷。
我看到有人写了一个可以做到这一点的程序,有人知道他是怎么做到的吗?
最佳答案
它在配置文件(通常是/etc/lvm/lvm.conf)中设置:
# This section allows you to configure which block devices should
# be used by the LVM system.
devices {
# Where do you want your volume groups to appear ?
dir = "/dev"
# An array of directories that contain the device nodes you wish
# to use with LVM2.
scan = [ "/dev" ]
关于linux - 如何在其他目录而不是/dev中创建lvm卷,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17828353/