最近我开始使用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主机上并使用Hyper-V提供程序进行Vagrant。
答案 0 :(得分:0)
我看到它的方式有两种可能的方法:
在您的主机上安装共享(Windows),并在Vagrantfile
中以synced_folder
的形式提供该安装点的路径。
在配置期间在您的访客上安装共享。
您当前的方法是尝试让Vagrantfile
动态生成挂载点。我不能说这是否可能,但上述两种方法之一肯定更可靠,更容易调试,并且不易出错。