我有一个CIFS
驱动器安装在linux
和Windows
上,分别如下,
sudo mount -t cifs -o mfsymlinks,cred=/home/user/.cifs_user //server/folder /mnt/test
net use M: \\server\folder /p:yes
我可以在 Linux 中创建并跟踪符号链接:
pushd /mnt/test
echo "test data" > test.dat
ln -s test.dat link-to-test.dat
cat link-to-test.dat
回报test data
与预期一致。完美!
现在,如果Windows
我在机器上打开一个gitbash
终端并写入
cat link-to-test.dat
然后我得到Minshall+Finch
文件
XSym
0008
729c5ad9d7fa8a171d3347aafa875f33
test.dat
同样,如果我从 运行相同的命令Powershell
。
那么问题是:我要做什么Windows
才能跟随链接的方式是否相同linux
?