#*****************************
# 仮想マシン停止(強制終了)
#*****************************
xl shutdown
xl destroy
#-----------------------------
virsh shutdown
virsh destroy
#-----------------------------
vagrant halt
vagrant destroy
#*****************************
# コンテナ停止(破棄)
#*****************************
lxc-stop
lxc-destroy
#-----------------------------
vzctl stop
vzctl destroy (vzctl delete)
#-----------------------------
docker stop
docker kill
PR