我甚至无法更改权限,chmod 777
一方面不会返回任何错误,但另一方面也不会更改权限。
文件系统是exfat。
但我的问题是无法在 exfat 文件系统上创建符号链接。已检查维基条目对于 exfat,但没有任何东西引起我对符号链接的注意,所以问题是,exfat 在设计上是否允许符号链接?
答案1
不(摘自Superuser.com:exFAT 是否支持符号链接?):
软链接:
- NTFS 是
- UDF 是
- exFAT 否
- FAT32 否
答案2
不。
Microsoft 文件系统不遵循 POSIX 规则。
--
编辑:
UDF 确实支持符号链接(软链接),因此您可能需要切换到该链接。
答案3
答案似乎更加微妙
如果你不相信,我可以提供截图,或者你自己试试
Shodan:Documents gt$ mount |grep WD
/dev/disk4s1 on /Volumes/WD (exfat, local, nodev, nosuid, noowners)
Shodan:Documents gt$ cd /Volumes/WD
Shodan:WD gt$ ls >textfile
Shodan:WD gt$ ln -s textfile softlink
Shodan:WD gt$ ln textfile hardlink
ln: hardlink: Operation not supported
Shodan:WD gt$ file -h textfile softlink
textfile: ASCII text
softlink: symbolic link to textfile
Shodan:WD gt$ uname -a
Darwin Shodan 21.6.0 Darwin Kernel Version 21.6.0: Thu Sep 29 20:13:56 PDT 2022; root:xnu-8020.240.7~1/RELEASE_ARM64_T6000 arm64
Shodan:WD gt$