我正在尝试测试LVM,但我首先失败,可能是简单的任务 – 创建快照.
我有以下情况:
root@debian:~# vgs VG #PV #LV #SN Attr VSize VFree big 1 1 0 wz--n- 14.99g 5.68g fast 1 2 0 wz--n- 14.99g 4.75g
和
root@debian:~# lvs Internal error: Using string as sort value for numerical field. Internal error: Using string as sort value for numerical field. Internal error: Using string as sort value for numerical field. LV VG Attr LSize Pool Origin Data% Move Log Copy% Convert home big -wi-ao-- 9.31g root fast -wi-ao-- 9.31g swap fast -wi-ao-- 952.00m
我想制作一个home的测试快照,所以想想这将是使用的命令:
lvcreate --size 1G -n snap -s /dev/big/home
但它失败了:
/dev/big/snap: not found: device not cleared Aborting. Failed to wipe snapshot exception store.
好吧,显然没有/ dev / big / snap – 我还没有制作快照.
/ dev / big仅包含指向home的链接:
root@debian:~# ls -l /dev/big/ total 0 lrwxrwxrwx 1 root root 7 Nov 28 18:09 home -> ../dm-2
我在这里想念的是什么?
解决方法
你的lvcreate命令看起来很好.导致此错误的一件事是udev没有运行.尝试服务udev状态以查看它是否正在运行,如果不是,则服务udev启动.