Vbox/Vagrant cannot start virtual machine and I cannot open a console
I have installed latest version of Vagrant and VirtualBox in a Windows Desktop. After do some changes in a linux virtual machine I ran
vagrant halt
vagrant up
then the problem appears. The vm has some trouble, I can see it by the preview of VirtualBox Administrator but I don't know how to open console (like you do in Vmware) to fix the problem.
At the end vagrant gets a timeout but this problem makes that the other vm of the Vagrantfile will also won't boot.
Is there any way to open a console in VBox to fix this kind of problems?
Thanks
对已启动的虚拟机没有帮助,但可以在Vagrantfile中启用VirtualBox GUI:
config.vm.provider "virtualbox" do |v|
v.gui = true
end
Do you mean, vagrant ssh
? This will open a SSH connection to your VM.