web-dev-qa-db-ja.com

vagrantを使用してOSXホストでUbuntu16.04ゲストを起動するときのVirtualboxGuruMeditationエラー

ホストOSバージョン:OSX El Capitan 10.11.4(15E65)

Virtualboxバージョン:5.0.18r106667

Vagrantバージョン:1.8.1

ゲスト:Ubuntu-16.04

私のvagrantfileは次のようになります

   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

vagrant upを実行すると、次のエラーが発生します。

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.

Virtualbox GUIを開き、Machine> Show Logをクリックすると、ログは次のように終了します。

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'

これは、virtualboxにvmにさらにメモリを割り当てるように指示する必要があること、またはvirtualboxがメモリを割り当てようとしているが割り当てられないこと、または他の何かを示していますか?

https://www.virtualbox.org/svn/vbox/trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp から発生しているようです。

4

VirtualBox 5.0.18から5.0.20(4/28にリリース...この質問が投稿されてから5日後)にアップグレードすると、この正確な問題が解決しました。したがって、5.0.16にダウングレードする必要はありません。

4
agileafro

VBバージョン5.0.18で同じ問題が発生しました。ubuntu/ xenial64ボックスはvirtualbox5.0.16で構築されたようです。5.0.18のアンインストールと5.0.16のインストールはうまくいきました。

2
wmaddox

これを解決する1つの方法は、virtualboxのOSXテストビルドをインストールすることです。 https://www.virtualbox.org/wiki/Testbuilds 。私が実行している現在のリリースバージョンに固有のバグのようです。

1