您好,登錄后才能下訂單哦!
#!/bin/bash
case "$1" in
start)
virsh start $2
;;
view)
virt-viewer $2&>/dev/null
;;
poweroff)
virsh shutdown $2
;;
stop)
virsh destroy $2
;;
restart)
virsh reboot $2
;;
delete)
virsh undefine $2 #刪除前端管理不刪除存儲
;;
create)
virt-install \
--name $2 \
--ram 1000 \
--file/var/lib/libvirt/p_w_picpaths/$2.qcow2 \
--file-size 8 \
--cdrom/home/kiosk/Desktop/rhel-server-7.1-x86_64-dvd.iso &
;;
reset)
qemu-img create -f qcow2 -b/var/lib/libvirt/p_w_picpaths/$2.qcow2 /var/lib/libvirt/p_w_picpaths/node.qcow2&>/dev/null
virt-install \
--name node \
--ram 1000 \
--file/var/lib/libvirt/p_w_picpaths/node.qcow2 \
--import
echo node.qcow2 created
;;
*)
echo ERROR
esac
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。