우분투 13.10 x86_64를 실행 중이고 권한이 있는 NTFS HDD를 마운트하도록 수정했지만 /etc/fstab
소유자가 내 사용자가 아닌 "루트"이기 때문에 일부 권한 오류가 발생합니다.
미리 감사드립니다
추신: 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입니다.
그런 다음 드라이브를 마운트 해제했다가 다시 마운트합니다.