查看virtualbox正在运行的虚拟机命令
VBoxManage list runningvms
根据查到的虚拟机{ip}号
使用后台命令启动虚拟机的方法:
VBoxManage startvm {ip}
使用后台命令关闭虚拟机的方法:
VBoxManage controlvm {ip} poweroff
VBoxManage list runningvms # 列出运行中的虚拟机
VBoxManage controlvm {ip} acpipowerbutton # 关闭虚拟机,等价于点击系统关闭按钮,正常关机
VBoxManage controlvm {ip} poweroff # 关闭虚拟机,等价于直接关闭电源,非正常关机
VBoxManage controlvm {ip} pause # 暂停虚拟机的运行
VBoxManage controlvm {ip} resume # 恢复暂停的虚拟机
VBoxManage controlvm {ip} savestate # 保存当前虚拟机的运行状态
Centos6.5 关闭防火墙
centOS 6.5关闭防火墙步骤
关闭命令: service iptables stop
永久关闭防火墙:chkconfig iptables off
两个命令同时运行,运行完成后查看防火墙关闭状态
service iptables status