我在筆記本電腦上運行Windows 8.1 64位。Vagrant出現錯誤,改變/ vagrant的所有權:不是目錄
我一直在關注這個指南嘗試的建立宅基地爲我的Laravel項目:laravel installation and setup
指南tldr:你只需要安裝無業遊民,虛擬框和作曲家。你用這些來獲得宅基地,然後進行初始化和安裝。你配置你的homestead.yaml並生成ssh密鑰。在所有這些之後,你使用vagrant,以便讓你的Vritual機器配備你的開發環境和所有的東西。
使用git bash,我按照指南進入'vagrant up'部分。
這裏就是它得到毛茸茸的,我得到以下錯誤:
$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'laravel/homestead'...
==> default: Matching MAC address for NAT networking...
==> default: Checking if box 'laravel/homestead' is up to date...
==> default: Setting the name of the VM: homestead
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
default: Adapter 1: nat
default: Adapter 2: hostonly
==> default: Forwarding ports...
default: 80 => 8000 (adapter 1)
default: 443 => 44300 (adapter 1)
default: 3306 => 33060 (adapter 1)
default: 5432 => 54320 (adapter 1)
default: 22 => 2222 (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
default: SSH address: 127.0.0.1:2222
default: SSH username: vagrant
default: SSH auth method: private key
default: Warning: Connection timeout. Retrying...
default: Warning: Remote connection disconnect. Retrying...
default:
default: Vagrant insecure key detected. Vagrant will automatically replace
default: this with a newly generated keypair for better security.
default:
default: Inserting generated public key within guest...
default: Removing insecure key from the guest if it's present...
default: Key inserted! Disconnecting and reconnecting using new SSH key...
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
default: The guest additions on this VM do not match the installed version o
f
default: VirtualBox! In most cases this is fine, but in rare cases it can
default: prevent things such as shared folders from working properly. If you
see
default: shared folder errors, please make sure the guest additions within t
he
default: virtual machine match the version of VirtualBox you have installed
on
default: your host and reload your VM.
default:
default: Guest Additions Version: 4.3.14
default: VirtualBox Version: 5.0
==> default: Setting hostname...
==> default: Configuring and enabling network interfaces...
==> default: Mounting shared folders...
default: /vagrant => C:/Users/Work/Homestead/Homestead
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
chown `id -u vagrant`:`id -g vagrant` /vagrant
Stdout from the command:
Stderr from the command:
chown: changing ownership of ���/vagrant���: Not a directory
我已經運行git bash作爲管理員。 我.yaml文件看起來像這樣
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
authorize: C:/Users/Work/.ssh/id_rsa.pub
keys:
- C:/Users/Work/.ssh/id_rsa
folders:
- map: C:/Users/Work/Projects
to: /home/vagrant/Code
sites:
- map: homestead.app
to: /home/vagrant/Code/Laravel/public
databases:
- homestead
variables:
- key: APP_ENV
value: local
我流浪漢,虛框的最新版本。
在我看來,似乎錯誤來自該文件夾路徑無效,但看到我的yaml文件應該是正確的,我不明白如何解決它。
我成功地在另一個Windows 8.1固定PC上安裝了宅基地環境,但我從未遇到過這個錯誤。
幫助深表感謝
檢查這個錯誤此https://github.com/mitchellh/vagrant/issues/5933 –
同樣的錯誤在這裏,這是一個相對較新的錯誤,應該在明天修復 –