Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何增加分配给 KVM 机器的磁盘大小?它可以是lvm,原始文件等。
谢谢
如果不是lvm,你可以使用qemu-img来调整磁盘大小,然后你需要启动os(或usb qemu-nbd)来启动虚拟机,增加分区和文件系统。
如果是 LVM,那么您只需使用 lvresize 来调整磁盘大小。
像这样的东西:
lzresize -L +5G /dev/pv_name/vol_name
然后,一旦完成,运行:
resize2fs /dev/pv_name/vol_name
只需将“pv_name”和“vol_name”替换为您的实际 LVM 名称