У меня есть хост-машина gentoo(linux). На которой установлены Virtualbox 4.3.28 и vagrant 1.4.3 (это последние доступные версии для gentoo).
При запуске vagrant up запускается Ubuntu 14.04. Я также могу подключиться к Ubuntu по ssh. Я также пробовал vagrant destroy, а затем vagrant up. Но как только он запускается, я получаю следующую ошибку. Ниже мой Vagrantfile и вывод ошибки.
P.S. Я создал базовую сборку Ubuntu 14.04 с нуля.
Vagrantfile
# -*- 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.Это решило моюпроблема, связанная с бродягами.Вот доступная электронная сборка:http://data.gpo.zugaina.org/johu/app-emulation/vagrant-bin/.
Итак, шаги, учитывая, что у вас естьприложение-portage/неспециалистуже установлено:
layman -a johu
layman -S
, или даже лучше (?)eix-sync
emerge -s vagrant
и app-emulation/vagrant-bin, версия 1.7.4 должна появиться как доступнаяemerge -av vagrant-bin
Затем повторите попытку создания виртуальной машины.