
從先前的版本複製腳本是 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 ...