Erro de Meditação do Virtualbox Guru ao iniciar um convidado do Ubuntu 16.04 no host OSX usando o vagrant

4

Versão do SO do host: OSX El Capitan 10.11.4 (15E65)

Versão do Virtualbox: 5.0.18r106667

Versão vagabunda: 1.8.1

Convidado: Ubuntu-16.04

Meu arquivo vagrant parece

   1 Vagrant.configure('2') do |config|
   2   config.vm.box = "ubuntu/xenial64"
   3   config.vm.box_url = "ubuntu/xenial64"
   4
   5   config.vm.define "tryxenial", primary: true do |machine|
   6
   7     machine.vm.provider :virtualbox do |provider, override|
   8       provider.name = "tryxenial"
   9     end
  10   end
  11 end

Quando executo vagrant up , resulta no seguinte erro:

Bringing machine 'tryxenial' up with 'virtualbox' provider...
==> tryxenial: Importing base box 'ubuntu/xenial64'...
==> tryxenial: Matching MAC address for NAT networking...
==> tryxenial: Checking if box 'ubuntu/xenial64' is up to date...
==> tryxenial: Setting the name of the VM: tryxenial
==> tryxenial: Clearing any previously set network interfaces...
==> tryxenial: Preparing network interfaces based on configuration...
    tryxenial: Adapter 1: nat
==> tryxenial: Forwarding ports...
    tryxenial: 22 (guest) => 2222 (host) (adapter 1)
==> tryxenial: Running 'pre-boot' VM customizations...
==> tryxenial: Booting VM...
==> tryxenial: Waiting for machine to boot. This may take a few minutes...
    tryxenial: SSH address: 127.0.0.1:2222
    tryxenial: SSH username: ubuntu
    tryxenial: SSH auth method: password
The guest machine entered an invalid state while waiting for it
to boot. Valid states are 'starting, running'. The machine is in the
'gurumeditation' 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.

The primary issue for this error is that the provider you're using
is not properly configured. This is very rarely a Vagrant issue.

Quando abro a interface virtualbox e clico em Machine > Show Log, o registro termina com

00:00:02.804262 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
00:00:02.804277 emR3Debug: rc=VERR_MORE_DATA
00:00:03.813006 Changing the VM state from 'RUNNING' to 'GURU_MEDITATION'
00:00:03.813034 Console: Machine state changed to 'GuruMeditation'

Isso indica que devo dizer ao VirtualBox para alocar mais memória para a VM, ou que a VirtualBox está tentando alocar memória, mas não capaz, ou alguma outra coisa?

Parece ser gerado pelo link

    
por Andrew M. Farrell 24.04.2016 / 01:31

3 respostas

4

A atualização do VirtualBox 5.0.18 para o 5.0.20 (lançado em 28/04 ... 5 dias após essa pergunta ser postada) resolveu exatamente esse problema para mim. Portanto, não é necessário fazer downgrade para 5.0.16 por mais tempo.

    
por 02.05.2016 / 01:30
2

Eu estava correndo para esse mesmo problema com a versão 5.0.18 do VB. Parece que a caixa do Ubuntu / Xenial64 foi construída com o VirtualBox 5.0.16. Desinstalar o 5.0.18 e instalar o 5.0.16 funcionou para mim.

    
por 24.04.2016 / 23:37
1

Uma maneira de resolver isso é instalar o build de teste do OSX do VirtualBox. link . Parece ser um bug específico para a versão atual que eu executo.

    
por 24.04.2016 / 01:58