Debian

訪問主機上的 samba 共享、符號連結到文件夾,顯示為一個空文件夾

  • November 24, 2019

在使用 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)

使用這裡已經提到的以下設置解決了。

在“全域”部分:

allow insecure wide links = yes

在有問題的共享部分:

follow symlinks = yes
wide links = yes

引用自:https://unix.stackexchange.com/questions/548768