如何将nfs用于vagrant同步特定文件夹?

时间:2014-12-24 13:13:59

标签: vagrant sync ubuntu-14.04 nfs

  • 主机:OS X Mavericks
  • GUEST机器:Ubuntu 14.04
  • VM软件:VirtualBox 4.3.14

在我的Vagrantfile中,我有以下内容并且工作正常:

  config.vm.synced_folder "~/Documents/WebApps", "/var/virtual/WebApps", id: "vagrant-root", 
    owner: "www-data",
    group: "www-data",
    mount_options: ["dmode=755,fmode=755"]

我读到了NFS以及它如何提高效果。

我只是在末尾添加type: nfs来激活nfs的使用吗?

1 个答案:

答案 0 :(得分:0)

以下对我有用。

最重要的是不要拥有group,owner和mount_options

  config.vm.synced_folder "~/Documents/WebApps", "/var/virtual/WebApps", id: "vagrant-root", 
    type: "nfs"

当我尝试使用这些属性时,我会收到失败警告。

answer有点帮助。