vagrant + virtualbox Время ожидания при загрузке машины

извините, я действительно новичок в бродяжнике. Я бегу vagrant 1.4.3 и virtualbox 4.3.26. и моя ОС хоста – ubuntu 14.04.2.

Я разработчик php, и я пытаюсь подготовить среду разработки для нескольких проектов.

и каждый ящик, который я пытаюсь использовать vagrantbox.es. Я получаю ту же ошибку при запуске команды vagrant up. и ошибка:

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. 

Я просматривал те же вопросы, и я попробовал

  config.vm.provider :virtualbox do |vb| vb.gui = true end 

после добавления этих строк я получаю страницу входа в свой ящик, чтобы ее загрузка, и я могу запускать свои команды в интерфейсе графического интерфейса. но на удивление я получаю такую ​​же ошибку. Я подумал, что это возможно, потому что гостевая ОС не может войти в систему, и я добавляю эти строки в свой бродячий файл

 config.ssh.username = "vagrant" config.ssh.password = "vagrant" config.ssh.insert_key = "true" 

но я получаю эту ошибку

 There are errors in the configuration of this machine. Please fix the following errors and try again: SSH: * The following settings shouldn't exist: insert_key, password 

и на самом деле я ввернута, и я не знаю, что еще мне делать.

Related of "vagrant + virtualbox Время ожидания при загрузке машины"