我试图跟随本文,但看起来我失败了:
# fdisk -l
Disk /dev/vda: 171.8 GB, 171798691840 bytes
16 heads, 63 sectors/track, 332881 cylinders, total 335544320 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000a5206
Device Boot Start End Blocks Id System
/dev/vda1 63 37998046 18998992 83 Linux
/dev/vda2 37998592 38998015 499712 82 Linux swap / Solaris
/dev/vda3 38998016 335544319 148273152 8e Linux LVM
# pvs
PV VG Fmt Attr PSize PFree
/dev/vda3 vd lvm2 a-- 141.40g 141.40g
# lvdisplay /dev/vd
#
# vgchange vd -a y
0 logical volume(s) in volume group "vd" now active
我究竟做错了什么?
答案1
您的卷组中似乎没有任何逻辑卷。您需要该lvcreate
命令。
坦白说,我不喜欢通过 CLI 进行磁盘分区。如果您能使用 KVPM,那么它是一款非常棒的 LVM GUI。它更加直观,您可以真正“看到”您的布局,如果您需要编写脚本,您可以稍后学习 CLI 命令。