NTFS權限

NTFS權限

我正在運行 ubuntu 13.10 x86_64,並且我已修改/etc/fstab為使用權限安裝 NTFS HDD,但我收到一些權限錯誤,因為所有者是“root”而不是我的用戶。

先致謝

PS:我在 Ubuntu 13.04 32 位元中執行此操作沒有任何問題

編輯:

fstab 內容:

#/etc/fstab: static file system information.

#Use 'blkid' to print the universally unique identifier for a
#device; this may be used with UUID= as a more robust way to name devices
#that works even if disks are added and removed. See fstab(5).

#<file system> <mount point>   <type>  <options>       <dump>  <pass>
#/ was on /dev/sda5 during installation
UUID=3e857b61-2d2b-469a-a3eb-de1cf4d5130a /               ext4    errors=remount-ro 0       
#/home was on /dev/sda7 during installation
#UUID=14887804-6799-443e-955f-6b2872cd441a /home           ext4    defaults        0       2
#swap was on /dev/sda6 during installation
#UUID=2da59282-61ee-40d2-821b-2042ff556748 none            swap    sw              0       0
#UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8 0 0 

答案1

若要將您的使用者作為擁有者安裝驅動器,請新增該uid選項。

id在終端機中輸入以從輸出中取得您的使用者 ID: uid=####

然後將該選項新增至 fstab 中,這樣您的新條目將如下所示:

UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8,uid=#### 0 0

其中 #### 是您的實際 uid。

然後卸載並重新安裝驅動器。

相關內容