gpt4 book ai didi

Windows10 上的 Vagrant 与 VirtualBox : "Rsync" could not be found on your PATH

转载 作者:行者123 更新时间:2023-12-03 05:16:18 25 4
gpt4 key购买 nike

我在 Windows 7 系统上使用 Vagrant 一段时间了。现在我有一台装有 Windows 10 的新 PC。我安装了 Oracle Virtual Box 和 Vagrant,并尝试使用命令 vagrant up 启动计算机。Vagrantfile 与我在 Windows 7 系统上使用的文件相同。这是 Vagrantfile 的内容:

Vagrant.configure(2) do |config|
config.vm.box = "debian/jessie64"

config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--memory", "768"]
end
config.vm.provision :shell, path: "bootstrap.sh"

config.vm.network :private_network, ip: "172.27.146.17"
config.vm.hostname = "www.delevensstijl.hst1.nl"
config.hostsupdater.aliases = ["www.thelifestylemethod.hst1.nl"]

end

this is the error i get

我收到的错误:在您的路径中找不到“rsync”。确保 rsync 已正确安装在您的系统上并且在 PATH 上可用。

既然我使用 Virtualbox,为什么 Vagrant 还要寻找 rsync?如何解决此错误?

最佳答案

我在另一个论坛中发现本地 Vagrant 目录通过 rsync 挂载为“/vagrant”。这是在盒子本身中设置的,您可以通过打开来检查

C:\Users\{your_username}\.vagrant.d\boxes\debian-VAGRANTSLASH-jessie64\8.2.2\virtualbox\Vagrantfile

并查看设置

  config.vm.synced_folder \
".",
"/vagrant",
type: "rsync"

为了解决这个问题,我在本地 Vagrantfile 中添加了以下行

  config.vm.synced_folder ".", "/vagrant", type: "virtualbox"

错误已解决

关于Windows10 上的 Vagrant 与 VirtualBox : "Rsync" could not be found on your PATH,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34176041/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com