После установки софта и попытки загрузит виртуальную машину, получаю следующие ошибки (хотя в интерфейсе VirtualBox машина отображается с состоянием "работает ") МОЯ КОМАНДА ``` vagrant up ``` ОШИБКА: ``` ==> homestead-7: Checking if box 'laravel/homestead' is up to date... ==> homestead-7: Clearing any previously set forwarded ports... ==> homestead-7: Clearing any previously set network interfaces... ==> homestead-7: Preparing network interfaces based on configuration... homestead-7: Adapter 1: nat homestead-7: Adapter 2: hostonly ==> homestead-7: Forwarding ports... homestead-7: 80 (guest) => 8000 (host) (adapter 1) homestead-7: 443 (guest) => 44300 (host) (adapter 1) homestead-7: 3306 (guest) => 33060 (host) (adapter 1) homestead-7: 5432 (guest) => 54320 (host) (adapter 1) homestead-7: 22 (guest) => 2222 (host) (adapter 1) ==> homestead-7: Running 'pre-boot' VM customizations... ==> homestead-7: Booting VM... ==> homestead-7: Waiting for machine to boot. This may take a few minutes... homestead-7: SSH address: 127.0.0.1:2222 homestead-7: SSH username: vagrant homestead-7: SSH auth method: private key The guest machine entered an invalid state while waiting for it to boot. Valid states are 'starting, running'. The machine is in the 'unknown' 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. ``` МОЯ КОМАНДА: ``` homestead up ``` ``` Bringing machine 'homestead-7' up with 'virtualbox' provider... ==> homestead-7: Checking if box 'laravel/homestead' is up to date... ==> homestead-7: Running provisioner: file... Guest-specific operations were attempted on a machine that is not ready for guest communication. This should not happen and a bug should be reported. ``` Моя конфигурация: - Windows 10 Домашняя (RUS) / 32 bit, CPU 64bit - Git-2.10.2-32-bit.exe - VirtualBox-5.1.8-111374-Win.exe - vagrant_1.8.7.msi Расположение Homestead: C:\Users\pasha\.homestead Мой Homestaed.yaml: ``` --- ip: "192.168.10.10" memory: 2048 cpus: 1 provider: virtualbox authorize: ~/.ssh/id_rsa.pub keys: - ~/.ssh/id_rsa folders: - map: E:\www\billing to: /home/vagrant/Code sites: - map: billing to: /home/vagrant/Code/Billing/public databases: - billingdb ``` Подскажите пожалуйста, в чем может быть проблема? Заранее благодарен!