62

我创建了一个包含以下内容的 Vagrantfile:

Vagrant::Config.run do |config|

  config.vm.define :foo do |cfg|
    cfg.vm.box     = 'foo'
    cfg.vm.host_name = "foo.localdomain.local"
    cfg.vm.network :hostonly, "192.168.123.10"
  end

  Vagrant.configure("2") do |cfg|
    cfg.vm.customize [ "modifyvm", :id , "--name", "foo" , "--memory", "2048", "--cpus", "1"]
    cfg.vm.synced_folder "/tmp/", "/tmp/src/"
  end

end

之后vagrant up或者vagrant reload我得到:

[foo] Attempting graceful shutdown of VM...
[foo] Setting the name of the VM...
[foo] Clearing any previously set forwarded ports...
[foo] Fixed port collision for 22 => 2222. Now on port 2200.
[foo] Creating shared folders metadata...
[foo] Clearing any previously set network interfaces...
[foo] Preparing network interfaces based on configuration...
[foo] Forwarding ports...
[foo] -- 22 => 2200 (adapter 1)
[foo] Booting VM...
[foo] Waiting for VM to boot. This can take a few minutes.
[foo] VM booted and ready for use!
[foo] Setting hostname...
[foo] Configuring and enabling network interfaces...
[foo] Mounting shared folders...
[foo] -- /vagrant

我的问题是:

  1. 为什么 Vagrant 挂载/vagrant共享文件夹?我读过共享文件夹已被弃用,有利于同步文件夹,而且我从未在我的 Vagrantfile 中定义任何共享文件夹。
  2. 为什么没有设置同步文件夹?

我在 MacOX 10.8.4 上使用 Vagrant 1.2.7 版。

4

1 回答 1

109

共享文件夹 VS 同步文件夹

基本上共享文件夹被重命名为从 v1 到 v2 的同步文件夹(文档),在vboxsf主机和来宾之间仍然使用的引擎盖下(如果有大量文件/目录,则存在已知的性能问题)。

Vagrantfile 目录安装为/vagrant来宾

Vagrant 正在将当前工作目录(Vagrantfile所在位置)挂载/vagrant在来宾中,这是默认行为。

查看文档

注意:默认情况下,Vagrant 会将您的项目目录(带有 Vagrantfile 的目录)共享到 /vagrant。

您可以通过添加cfg.vm.synced_folder ".", "/vagrant", disabled: true您的Vagrantfile.

为什么同步文件夹不起作用

基于/tmp主机上的输出在正常运行期间未安装。

使用VAGRANT_INFO=debug vagrant upVAGRANT_INFO=debug vagrant reload启动 VM 以获取有关未安装同步文件夹的原因的更多输出。可能是权限问题(/tmp主机上的模式位应该是drwxrwxrwt)。

我使用以下方法进行了测试快速测试并且它有效(我使用了 opscodebento raring vagrant base box)

config.vm.synced_folder "/tmp", "/tmp/src"

输出

$ vagrant reload
[default] Attempting graceful shutdown of VM...
[default] Setting the name of the VM...
[default] Clearing any previously set forwarded ports...
[default] Creating shared folders metadata...
[default] Clearing any previously set network interfaces...
[default] Available bridged network interfaces:
1) eth0
2) vmnet8
3) lxcbr0
4) vmnet1
What interface should the network bridge to? 1
[default] Preparing network interfaces based on configuration...
[default] Forwarding ports...
[default] -- 22 => 2222 (adapter 1)
[default] Running 'pre-boot' VM customizations...
[default] Booting VM...
[default] Waiting for VM to boot. This can take a few minutes.
[default] VM booted and ready for use!
[default] Configuring and enabling network interfaces...
[default] Mounting shared folders...
[default] -- /vagrant
[default] -- /tmp/src

在 VM 中,您可以看到挂载信息/tmp/src on /tmp/src type vboxsf (uid=900,gid=900,rw)

于 2013-08-30T09:38:21.930 回答