에서 virsh
어떻게 자동 시작으로 표시되는 도메인을 볼 수 있습니까? virsh list
자동 시작으로 표시된 도메인을 표시하지 않습니다.
에서 virsh
어떻게 자동 시작으로 표시되는 도메인을 볼 수 있습니까? virsh list
자동 시작으로 표시된 도메인을 표시하지 않습니다.
답변:
매뉴얼 페이지에서 :-
virsh list --autostart
해야합니다.
--all
중지 된 도메인도 포함하는 데 사용하십시오 . 예 :sudo virsh list --autostart --all
다음은 자동 시작 정보를 얻기위한 범용 스크립트입니다. 자동 시작 활성화가 설정된 도메인 (VM)을 나열 virsh_autostart_info.sh
하고 실행하려면 다음을 수행하십시오
virsh_autostart_info.sh | grep -i enabled
.. 물론 이름이나 원하는 것을 표시하도록 정리할 수 있습니다.
##
# Configuration
#
VIRSH=/usr/bin/virsh
##
# Simple list of domains (VMs)
#
list_domains() {
# list, skipping headers, capturing number and domName, and then strip Id and State column
$VIRSH list --all | awk '$1 == "-" || $1+0 > 0 { print $2 }'
}
##
# Processing
#
## full info
#echo ""
#list_domains | while read vmName; do
# $VIRSH dominfo $vmName
#done
# just autostart info
echo ""
list_domains | while read vmName; do
autostartStatus=`$VIRSH dominfo $vmName | grep -i autostart`
echo $vmName $autostartStatus
done
virsh list --autostart
centos 6.5에서 나를 위해 작동하지 않았다