我在几年前建立的系统上使用 LVM。当时我在驱动器上留了一些未分区的空间,以便可以创建 LVM 快照。
我现在已经忘记我留出了多少空间。
我如何才能知道有多少免费?
答案1
运行 /usr/sbin/vgs 命令。它将列出所有 LVM 卷组、每个卷组的总大小以及可用空间量。
答案2
除了 sagi 的正确答案之外,作为帮助自己解决这个问题的更通用的方法,你可以直接输入sudo lvm
或者以 root 身份运行 lvm 以进入 lvm 控制台。
然后您可以键入 help 来查看所有 lvm 命令,这是一种帮助正确理解所有这些命令的好方法。
[kbrandt@machine: ~] sudo lvm
lvm> help
Available lvm commands:
Use 'lvm help <command>' for more information
dumpconfig Dump active configuration
formats List available metadata formats
help Display help for commands
lvchange Change the attributes of logical volume(s)
lvconvert Change logical volume layout
lvcreate Create a logical volume
lvdisplay Display information about a logical volume
lvextend Add space to a logical volume
lvmchange With the device mapper, this is obsolete and does nothing.
lvmdiskscan List devices that may be used as physical volumes
lvmsadc Collect activity data
lvmsar Create activity report
lvreduce Reduce the size of a logical volume
lvremove Remove logical volume(s) from the system
lvrename Rename a logical volume
lvresize Resize a logical volume
...
答案3
pvs
例如