在使用 Debian 10 和 Samba 4.9 的服务器中,有 2 个具有以下挂载点的 HD:
/hd1
/hd2
/hd1 中有一个 Samba 共享的文件夹。
/hd1/share
在共享内,我决定将文件夹移动到 /hd2
/hd2/afolder
并创建一个符号链接到它
ln -s /hd2/bigfolder /hd1/share/bigfolder
在服务器上
ls /hd1/share/bigfolder
节目
file1
file2
从客户端访问共享(Ubuntu 18.04)
smb://server/share/bigfolder
它看起来像一个空文件夹。
我需要查看并处理文件(file1 和 file2)
答案1
如上所述使用以下设置解决已经在这里了。
在“全局”部分:
allow insecure wide links = yes
在相关的共享部分中:
follow symlinks = yes
wide links = yes