2017-03-14 15 views
1

私はscotchboxを新しくインストールしました。私はこれをインストールしようとしています。通常は問題なく動作しますが、今はウィンドウを使用していて、さまざまな問題が発生し始めています。バグが共有フォルダをマウントできません

ほとんどの問題を解決しましたが、何らかの理由でこの問題を解決できません。

==> default: Mounting shared folders... 
    default: /var/www => C:/Users/kevin/Desktop/programeren/scotch-box-master 
Vagrant was unable to mount VirtualBox shared folders. This is usually 
because the filesystem "vboxsf" is not available. This filesystem is 
made available via the VirtualBox Guest Additions and kernel module. 
Please verify that these guest additions are properly installed in the 
guest. This is not a bug in Vagrant and is usually caused by a faulty 
Vagrant box. For context, the command attempted was: 

mount -t vboxsf -o dmode=777,fmode=666,uid=1000,gid=1000 var_www /var/www 

The error output from the command was: 

: No such file or directory 

C:\Users\kevin\Desktop\programeren\scotch-box-master> 

マイvagrantfile:私は浮浪者-vbguestと呼ばれる放浪のプラグインをインストールしようとしている

# -*- mode: ruby -*- 
    # vi: set ft=ruby : 

    Vagrant.configure("2") do |config| 

     config.vm.box = "scotch/box" 
     config.vm.network "private_network", ip: "192.168.33.10" 
     config.vm.hostname = "scotchbox" 
     config.vm.synced_folder ".", "/var/www", :mount_options => ["dmode=777", "fmode=666"] 

    # Optional NFS. Make sure to remove other synced_folder line too 
    #config.vm.synced_folder ".", "/var/www", :nfs => { :mount_options => ["dmode=777","fmode=666"] } 

end 

が、これは動作しませんでした。任意のアイデアを解決する方法。

ありがとうございます。

挨拶、

ケビン

答えて

2

あなたはVirtualBoxの5.1.16を使用している場合には、報告された同様の問題がありました。 5.1.14へのダウングレードのように見えますが、ほとんどの人にとってこれを解決しました。あなたはそれを試すことができます。

+0

あなたは素晴らしいです!ありがとう –

関連する問題