0
我試圖讓Laravel運行在運行優勝美地的Imac上的虛擬機上。我已經在我的Macbook上設置了虛擬機,但出於某種原因,我無法讓虛擬機在我的Imac上運行。我相信我所有的目錄路徑都是正確的,但是當我進入虛擬機時,沒有任何一個目錄顯示出來。我相信這是與我的目錄路徑有關,但我讓它們與我的Macbook完全一樣,它似乎仍然無法工作。當我運行「vagrant up」時,我也會得到這兩個錯誤,但是從Ive研究的結果來看,這不應該成爲問題。讓Laravel在imac上的虛擬機上運行
/opt/vagrant/bin/../embedded/gems/gems/vagrant-1.7.2/lib/vagrant/pre-rubygems.rb:31:
warning: Insecure world writable dir /Users/tylerfoulkes in PATH, mode 040777
/opt/vagrant/embedded/gems/gems/bundler-1.7.11/lib/bundler/runtime.rb:222: warning: Insecure world writable dir
/Users/tylerfoulkes in PATH, mode 040777
Homestead.yaml文件
---
ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: /Users/username/laravel
to: /home/vagrant/Code
sites:
- map: learn.app
to: /home/vagrant/Code/laravel/public
databases:
- homestead
variables:
- key: APP_ENV
value: local
# blackfire:
# - id: foo
# token: bar
hosts文件
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
fe80::1%lo0 localhost
127.0.0.1 learn.app
'folders: - map:/ Users/username/laravel to:/ home/vagrant/Code' 也許你應該ch憤怒,以你自己的用戶名。 –
@AmarSyla我設置爲我的用戶名,我只是使用用戶名作爲一般的佔位符。 – Tyler