从以前的版本复制脚本是 Raspberry 的 Debian 的全部内容。
该命令应将外部 NTFS 驱动器安装到文件夹。在新安装之前,此命令有效:
sudo mount -t ntfs /dev/sdb1 -o umask=007,gid=wheel,gid=www-data,rw,nosuid,nodev,relatime,allow_other ~/Ext-hdd/
现在,我得到了
ntfs: (device sdb1): parse_options(): Unrecognized mount option allow_other.
我尝试删除此选项,但如果没有它,我就无法对驱动器进行写访问,而这是我所需要的。我尝试调整标志
sudo mount -t ntfs /dev/sdb1 -o umask=007,gid=wheel,uid=1001,rw,nosuid,nodev,relatime ~/Ext-hdd/
但我仍然无法获得写入权限。
答案1
尝试这个
sudo apt install ntfsprogs
sudo apt install ntfs-3g
答案2
Linux 内核 NTFS 驱动程序仅支持只读挂载。对于读写访问,您需要安装并使用ntfs-3g
保险丝驱动器。要显式使用 ntfs-3g 而不是内核驱动程序,请在挂载类型选项中指定它:
mount -t ntfs-3g ...