建立ssh连接VBoxManage
后,可以使用以下方法完成所有操作:
1.列出您的VMS:
首先使用命令列出可用的虚拟机VBoxManage list vms
,我将在自己的设置中进行说明:
andrew@ilium~$ VBoxManage list vms
"Windows 8" {c4422acd-727b-45a0-9eef-65636bcde44d}
"Windows 10" {a8e262be-a032-4918-9085-63185318a979}
"Trusty Tahr Clean Copy" {c99bcf4b-9fea-4971-b190-425cb0b0cdeb}
"Xenial Xerus Clean Copy" {850122b9-c65f-425b-abb3-ffda68e159c6}
"Precise Pangolin Clean Copy" {169086e6-a3f4-42e7-8a89-63dcb273143f}
"Precise Pangolin Working Copy" {ff8312b6-cfae-4877-aa93-d71036d8882c}
"Xenial Xerus for MPlayer" {44902710-4368-4c06-9d24-3cb55328d31c}
"Xenial Xerus for vlc" {a62ad306-17d9-4ee3-8c1a-e4439c3b0e05}
"Xenial Xerus mingw64" {584d8513-6a16-49c7-b020-d657b93d5552}
"Trusty Tahr Working copy..." {433349e9-52eb-4066-bae7-623592871839}
"Xenial Xerus Working copy..." {dda23e74-cdb5-4c7d-8836-31be4129c02a}
andrew@ilium~$
注意:如果不确定哪个虚拟机正在实际运行,可以VBoxManage list runningvms
改用...
2.启动虚拟机:
该VBoxManage
命令和选项,你是后启动虚拟机有这些:
startvm <uuid|vmname>...
[--type gui|sdl|headless|separate]
因此,在我的示例中要启动 “ Trusty Tahr干净副本” VM,您将使用:
VBoxManage startvm "Trusty Tahr Clean Copy" --type gui
3.停止虚拟机:
要停止 VM,您可以再次使用,VBoxManage
但这次使用以下controlvm
选项:
controlvm <uuid|vmname>
pause|resume|reset|poweroff|savestate|
在我的示例中,关闭 “ Trusty Tahr干净副本” VM的命令将是:
VBoxManage controlvm "Trusty Tahr Clean Copy" savestate
这应该可以在ssh上很好地工作,毕竟ssh需要gui :)