当我建立一个链接以便某人可以直接通过网络访问文件,然后将其复制过来时,出现以下错误:
There was an error copying the file into smb://ostrich/users/Public/Website.
Symlinks not supported by backend
我知道这是因为 NTFS 使用不同的链接(命令mklink
而不是命令ln
),但是我如何为 NTFS 创建链接 - 您可以mklink
在 Ubuntu 上使用吗?
答案1
要做到这一点您可以使用该-n
选项。
ln -n /home/tim/Website/family/name/index.html /home/tim
然后复制到 samba 共享。