0
Ubuntu 15.1にLaravel/Homesteadをインストールしているときに、「迷惑メールを」実行するために私のパスが正しくマップされません。UbuntuにLaravel/Homesteadをインストールする
[email protected]:~/Homestead$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
There are errors in the configuration of this machine. Please fix
the following errors and try again:
vm: * The host path of the shared folder is missing:~/home/goldenos/Homestead/projects
これは私のHomestead.yamlファイルの設定
限り、私はあなたのパスに~
を削除するか、
/home/username
一部を除去いずれかのよう
~
は、Linuxで
/home/username
のショートカットである知っているように
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: ~/home/goldenos/Homestead/projects
to: /home/vagrant/Code
sites:
- map: homestead.app
to: /home/goldenos/Homestead/projects
databases:
- homestead
# blackfire:
# - id: foo
# token: bar
# client-id: foo
# client-token: bar
# ports:
# - send: 50000
# to: 5000
# - send: 7777
# to: 777
# protocol: udp
これは間違ったパスのように思えます。 Ubuntuマシン上のそのパスに移動してそのパスが存在することを確認できますか?そうでない場合は、 '〜/ Homestead/projects'を試してください –