问题:在ubuntu server下安装的虚拟机如何管理
解决:使用VBoxManage管理
方法:
一、查看当前虚拟机
VBoxManage list vms
二、查看当前正在运行的虚拟机
VBoxManage list runningvms
三、启动虚拟机
VBoxManage startvm 虚拟机名
四、无前端图形界面方式启动虚拟机
VBoxManage startvm 虚拟机名 --type headless
五、使用 VRDP 方式通过命令行启动虚拟机: (3389)
VBoxManage startvm 虚拟机名 --type vrdp
六、关闭虚拟机
VBoxManage controlvm 虚拟机名 poweroff