无法在 vagrant 中同步文件夹

unable to sync folder in vagrant

我正在使用 vagrant box 'ubuntu/trusty64'。我正在尝试在 vagrant 中同步文件夹,为此,我修改了我的 vagrant 文件。文件是:

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

Vagrant.configure("2") do |config|
  config.vm.box = "foo-box"
  config.vm.network "forwarded_port", guest: 8000, host: 8000, host_ip: "127.0.0.1"
  config.vm.network "forwarded_port", guest: 8080, host: 8080, host_ip: "127.0.0.1"
  config.vm.network "forwarded_port", guest: 5000, host: 5000, host_ip: "127.0.0.1"

  # Work around disconnected virtual network cable.
  config.vm.provider "virtualbox" do |vb|
    vb.customize ["modifyvm", :id, "--cableconnected1", "on"]
  end
Vagrant.configure("2") do |config|
  config.vm.synced_folder "C:/fullstack/vagrant", "home/vagrant"
end

  config.vm.provision "shell", inline: <<-SHELL
    apt-get -qqy update
    apt-get -qqy upgrade
    apt-get -qqy install make zip unzip postgresql

    apt-get -qqy install python3 python3-pip
    pip3 install --upgrade pip
    pip3 install flask packaging oauth2client redis passlib flask-httpauth
    pip3 install sqlalchemy flask-sqlalchemy psycopg2 bleach

    apt-get -qqy install python python-pip
    pip2 install --upgrade pip
    pip2 install flask packaging oauth2client redis passlib flask-httpauth
    pip2 install sqlalchemy flask-sqlalchemy psycopg2 bleach

    su postgres -c 'createuser -dRS vagrant'
    su vagrant -c 'createdb'
    su vagrant -c 'createdb news'
    su vagrant -c 'createdb forum'
    su vagrant -c 'psql forum -f /vagrant/forum/forum.sql'

    vagrantTip="[35m[1mThe shared directory is located at /vagrant\nTo access your shared files: cd /vagrant[m"
    echo -e $vagrantTip > /etc/motd

    wget http://download.redis.io/redis-stable.tar.gz
    tar xvzf redis-stable.tar.gz
    cd redis-stable
    make
    make install

    echo "Done installing your virtual machine!"
  SHELL
end

我也试过 中给出的答案,但没有帮助。

我的项目在主机上的路径是 C:\fullstack。 fullstack文件夹的内容是

README.md  vagrant/  Vagrantfile

而且 vagrant 文件夹的内容是

catalog/  forum/  tournament/  Vagrantfile

两个 vagrantfile 文件中的内容相同。 我试图在 vagrant 目录中的来宾计算机中创建一个空目录,但该目录未显示在主机中。请提出一些建议。

您不需要重新引入配置部分,只需将您的 Vagrantfile 作为

Vagrant.configure("2") do |config|
  config.vm.box = "foo-box"
  config.vm.network "forwarded_port", guest: 8000, host: 8000, host_ip: "127.0.0.1"
  config.vm.network "forwarded_port", guest: 8080, host: 8080, host_ip: "127.0.0.1"
  config.vm.network "forwarded_port", guest: 5000, host: 5000, host_ip: "127.0.0.1"

  # Work around disconnected virtual network cable.
  config.vm.provider "virtualbox" do |vb|
    vb.customize ["modifyvm", :id, "--cableconnected1", "on"]
  end

  config.vm.synced_folder "C:/fullstack/vagrant", "home/vagrant/stack"

另外,直接在您的 /home/vagrant 文件夹上同步也不太好,因为该文件夹有 .ssh 文件夹(ssh 可能无法工作)和 bash 信息,最好有主文件夹的子目录。