Problemas com a execução de “vagrant up”

0

Quando executo "vagrant up", vejo a seguinte mensagem de erro:

% vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
[default] Clearing any previously set forwarded ports...
[default] Clearing any previously set network interfaces...
[default] Preparing network interfaces based on configuration...
[default] Forwarding ports...
[default] -- 22 => 2222 (adapter 1)
[default] -- 3000 => 3333 (adapter 1)
[default] -- 5678 => 5678 (adapter 1)
[default] -- 27017 => 27017 (adapter 1)
[default] -- 28017 => 28017 (adapter 1)
[default] Booting VM...
[default] Waiting for machine to boot. This may take a few minutes...
The guest machine entered an invalid state while waiting for it
to boot. Valid states are 'starting, running'. The machine is in the
'poweroff' state. Please verify everything is configured
properly and try again.

If the provider you're using has a GUI that comes with it,
it is often helpful to open that and watch the machine, since the
GUI often has more helpful error messages than Vagrant can retrieve.
For example, if you're using VirtualBox, run 'vagrant up' while the
VirtualBox GUI is open.

Eu tentei iniciar a máquina virtual a partir da interface do usuário do VirtualBox, mas recebo o seguinte erro:

where: supR3HardenedMainInitRuntime what: 4 VERR_VM_DRIVER_VERSION_MISMATCH (-1912) - The installed support driver doesn't match the version of the user.

Esse erro parece ser bastante comum, então há muitos conselhos na Internet sobre como consertá-lo. Aqui estão alguns comandos que eu tentei antes:

sudo apt-get update
sudo apt-get upgrade
sudo dpkg-reconfigure virtualbox-dkms
sudo dpkg-reconfigure virtualbox

Mas isso não ajudou.

Aqui estão as versões do software que eu uso:

% VBoxManage --version
4.3.34_Ubuntur104062
% lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.3 LTS
Release:    14.04
Codename:   trusty
    
por IvanMushketyk 12.12.2015 / 00:07

1 resposta

0

Eu tentei reinstalar o Vagrant e o VirtualBox, mas isso não ajudou.

Eu só consegui rodar minha VM somente depois que eu reinstalei o Ubuntu e instalei o VirtualBox e o Vagrant da seguinte maneira:

sudo apt-get update
sudo apt-get -y install virtualbox-4.3
sudo apt-get -y install virtualbox-dkms

sudo apt-get -y install vagrant
    
por IvanMushketyk 13.12.2015 / 16:13