머신이 부팅되기를 기다리는 동안 시간이 초과되었습니다!! Vagrant-Virtualbox

머신이 부팅되기를 기다리는 동안 시간이 초과되었습니다!! Vagrant-Virtualbox

나는 젠투(리눅스) 호스트 머신을 가지고 있습니다. 여기에는 Virtualbox 4.3.28과 vagrant 1.4.3이 설치되어 있습니다(이것들은 젠투에 사용 가능한 최신 버전입니다).

vagrant up에서는 Ubuntu 14.04가 시작됩니다. 우분투에 SSH로 접속할 수도 있습니다. 나는 또한 vagrant destroy를 시도한 다음 vagrant up을 시도했습니다. 하지만 시작하자마자 다음 오류가 발생합니다. 아래는 내 Vagrantfile 및 출력 오류입니다.

PS 저는 처음부터 Ubuntu 14.04 기본 상자를 만들었습니다.

방랑 파일

# -*- mode: ruby -*-

# vi: set ft=ruby :

    Vagrant.configure(2) do |config|
      config.vm.box = "Ubuntu"
      config.vm.boot_timeout = "700"
      config.vm.provider :virtualbox do |vb|
      vb.gui = true
      end

    end 

터미널 출력

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] Booting VM...
[default] Waiting for machine to boot. This may take a few minutes...

Timed out while waiting for the machine to boot. This means that
Vagrant was unable to communicate with the guest machine within
the configured ("config.vm.boot_timeout" value) time period. This can
mean a number of things.

If you're using a custom box, make sure that networking is properly
working and you're able to connect to the machine. It is a common
problem that networking isn't setup properly in these boxes.
Verify that authentication configurations are also setup properly,
as well.

If the box appears to be booting properly, you may want to increase
the timeout ("config.vm.boot_timeout") value.

이 문제를 해결할 수 있는 해결책이 있나요?

답변1

Vagrant의 최신 버전을 다운로드해 보세요.그것은 내 문제를 해결했습니다방랑자 관련 문제.사용 가능한 ebuild는 다음과 같습니다:http://data.gpo.zugaina.org/johu/app-emulation/vagrant-bin/.

따라서 단계는 다음과 같습니다.앱 포티지/평신도이미 설치되었습니다:

  1. layman -a johu
  2. layman -S, 아니면 더 나은(?)eix-sync
  3. emerge -s vagrantapp-emulation/vagrant-bin, 버전 1.7.4가 사용 가능한 것으로 표시되어야 합니다.
  4. emerge -av vagrant-bin

그런 다음 VM 프로비저닝을 다시 시도합니다.

관련 정보