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.
我正在尝试使用virsh shutdown vm1命令关闭 centos 上的 kvm。我检查了使用的规范 xml 中是否存在 ACPI 功能,virsh dumpxml vm1 | grep -F acpi并且确实存在。我在这里想念什么?我不想强制关闭虚拟机。
virsh shutdown vm1
virsh dumpxml vm1 | grep -F acpi
守护acpid进程必须在 VM 来宾中运行,否则它将不会响应来自管理程序的请求。
acpid
从客人内部:
service acpid status
应该返回正在运行的 acpid。如果它不尝试:
sudo yum install acpid sudo chkconfig acpid on sudo service acpid start