我正在尝试设置一个VirtualBox VM
,以便在该过程结束时,Linux 的安装将从虚拟 DVD 开始。
唉,在设置过程结束时我收到一个NS_ERROR_FAILURE
错误:
openstack@ubuntu:~$ VBoxManage createvm --name openstack101 --ostype Ubuntu_64 --register
Virtual machine 'openstack101' is created and registered.
UUID: 2a0fee1a-98c0-4f7d-9344-90eefcf75f05
Settings file: '/home/openstack/VirtualBox VMs/openstack101/openstack101.vbox'
openstack@ubuntu:~$ VBoxManage modifyvm openstack101 --memory 2048 --nic1 nat --nic2 hostonly --hostonlyadapter2 vboxnet0 --nic3 hostonly --hostonlyadapter3 vboxnet1
openstack@ubuntu:~$ VBoxManage modifyvm openstack101 --nic1 nat --natpf2 ssh,tcp,,4400,,22
openstack@ubuntu:~$ VBoxManage createhd --filename openstack101.vdi --size 204800
%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Disk image created. UUID: 37e1ed19-8a3a-45b9-b0a3-a8af101ea165
openstack@ubuntu:~$ VBoxManage storagectl openstack101 --name "SATA Controller" --add sata --controller IntelAHCI --hostiocache on --bootable on
openstack@ubuntu:~$ VBoxManage storagectl openstack101 --name "IDE Controller" --add ide --controller PIIX4 --hostiocache on --bootable on
openstack@ubuntu:~$ VBoxManage storageattach openstack101 --storagectl "IDE Controller" --type dvddrive --port 1 --device 0 --medium ~/shared/images/ubuntu-12.04.5-desktop-amd64.iso
openstack@ubuntu:~$ VBoxManage modifyvm openstack101 --boot1 dvd
openstack@ubuntu:~$ VBoxManage modifyvm openstack101 --vrdemulticon on --vrdeport 3390
openstack@ubuntu:~$ VBoxManage startvm openstack101 --type gui
Waiting for VM "openstack101" to power on...
VBoxManage: error: The virtual machine 'openstack101' has terminated unexpectedly during startup with exit code 0
VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component Machine, interface IMachine, callee
openstack@ubuntu:~$
谷歌搜索此错误信息表明VBoxManage startvm openstack101 --type gui,
应该使用VBoxManage startvm openstack101 --type headless.
当我这样做时,我确实收到了:
openstack@ubuntu:~$ VBoxManage startvm openstack101 --type headless
Waiting for VM "openstack101" to power on...
VM "openstack101" has been successfully started.
但没有看到任何 Ubuntu 安装启动。
您能否建议我应该做些什么才能成功使用 VBoxManage 命令安装 VM?
答案1
您的虚拟机已启动并运行,但您需要查看器来“查看”它。以下是启动查看器的命令,
rdesktop -a 16 -N [host server ip]:3390
或者,使用以下命令启动虚拟机,您将找到 VRDE 服务器将监听的端口号
VBoxHeadless --startvm openstack101
然后,使用正确的端口号(3390 或其他)运行上面的 rdesktop 命令
答案2
我遇到了类似的问题。我使用相同版本的 VBox 和客户添加项解决了问题。如果不相同,请卸载客户添加项并安装正确的版本。