VirtualBox 的安装和使用
VirtualBox VirtualBox 安装 VirtualBox 安装比较简单,参考其官方说明即可:Download VirtualBox。 VBoxManage 基础命令 VBoxManage list 列出已安装的虚拟机 ➜ ~ VBoxManage list vms "fedora" {b9daec39-7e85-485f-969b-629fa52bd549} "centos" {49074fd5-386b-42ca-9e25-af29f5e42f1f} 列出正在运行的虚拟机 ➜ ~ VBoxManage list runningvms "centos" {49074fd5-386b-42ca-9e25-af29f5e42f1f} VBoxManage startvm 命令格式 ➜ ~ VBoxManage startvm Usage: VBoxManage startvm <uuid|vmname>... [--type gui|headless|separate] [-E|--putenv <NAME>[=<VALUE>]] 以窗口模式启动虚拟机 ...