不太習慣Linux的使用,但也很喜歡使用Linux命令操作方式和Linxu上的開發或者折騰。所以一直使用虛擬機,在Windows下用SSH連接Linux。但Virtualbox啟動總會有界面出現,感覺老別扭。在網上搜了一下還真找到方法,其實Virtualbox是提供了後台啟動的。只是不是默認的。
查看有哪些虛擬機
VBoxManage list vms
查看虛擬的詳細信息
VBoxManage list vms --long
查看運行著的虛擬機
VBoxManage list runningvms
開啟虛擬機在後台運行
VBoxManage startvm <vm_name> -type headless
開啟虛擬機並開啟遠程桌面連接的支持
VBoxManage startvm <vm_name> -type vrdp
改變虛擬機的遠程連接端口,用於多個vbox虛擬機同時運行
VBoxManage controlvm <vm_name> vrdpprot <ports>
關閉虛擬機
VBoxManage controlvm <vm_name> acpipowerbutton
強制關閉虛擬機