最近我开始使用 Vagrant 来设置开发环境。我已经能够使用 Packer 构建一个基本框,并稍后使用 powershell 脚本配置/配置 VM。
我想安装的一些软件保存在共享驱动器上。我想在启动机器时将其安装为同步文件夹。
我尝试了以下方法:
config.vm.synced_folder "\\\\corp\\dfs", "/DFS", type: "smb"
我也尝试//corp/dfs
过,但无济于事。
我提供凭据并收到以下错误:
Exporting an SMB share failed! Details about the failure are shown
below. Please inspect the error message and correct any problems.
Host path: //corp/dfs
Stderr: The syntax of this command is:
NET SHARE
sharename
sharename=drive:path [/GRANT:user,[READ | CHANGE | FULL]]
[/USERS:number | /UNLIMITED]
[/REMARK:"text"]
[/CACHE:Manual | Documents| Programs | BranchCache | None]
sharename [/USERS:number | /UNLIMITED]
[/REMARK:"text"]
[/CACHE:Manual | Documents | Programs | BranchCache | None]
{sharename | devicename | drive:path} /DELETE
sharename \\computername /DELETE
Error:
Stdout:
我在 Windows 主机上并为 Vagrant 使用 Hyper-V 提供程序。