若要在synology中的檔案系統下使用捷徑,可以建立symbolic link,hard link不能建立
建立的方式可以參考鳥哥的linux
但就算成功的建立了symbolic link, 在ssh上面可以正常使用沒問題
但如果要在smb上或ftp上使用就會出現權限不足的問題
查了一下資料,似乎是這幾次改版後才將此功能在smb、ftp上,以安全性為由而移除掉
但也有人開始討論手動開啟功能的可行性
http://forum.synology.com/enu/viewtopic.php?f=3&t=12163
其中有提到
I think there is an easier method. I just inserted into /usr/syno/etc/smb.conf in the GLOBAL section:
follow symlinks = yes
wide symlinks = yes
unix extensions = no
Then:
/usr/syno/etc/rc.d/S80samba.sh restart
在討論區上有的人說改過後就可以使用功能了,也有人說依然不行
依每個人的機器而定
我自已做了一遍,cs407不行使用。
正在繼續找替代方案
文章標籤
全站熱搜

羅之福練得
如果不是很大量的要做link, 可以考慮用mount的方式來做, 如 mount -o bind /volume1/homes/xx /volume1/OO/xx 這樣的方式, 如果是要一開機就做的話, 可以寫在/etc/rc.local 中 FYI