我正在运行ubuntu13.10 x86_64,并且我已经修改了/etc/fstab以使用权限挂载我的NTFS,但是我得到了一些权限错误,因为所有者是"root“而不是我的用户。
提前感谢
P.S:我用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 发布于 2013-11-01 14:44:27
若要以用户身份挂载驱动器,请添加uid选项。
在终端中键入id,从输出:uid=####中获取用户ID。
然后将该选项添加到fstab中,以便您的新条目如下所示:
UUID=4A1499C11499B085 /media/ivykoko/269Gb ntfs umask=0000,utf8,uid=#### 0 0
其中####是您的实际uid。
然后卸载并重装驱动器。
https://askubuntu.com/questions/369508
复制相似问题