지금까지:
sudo mount -t ntfs -o rw,auto,user,fmask=0000,dmask=0000 /dev/sdc1 /media/BB
잘 작동합니다. 모든 권한은 읽기 및 쓰기로 설정되어 있습니다. 이제 소유자가 "루트"가 아니기만 하면 됩니다.
소유자로서 ntfs를 마운트하려면 어떻게 해야 합니까?
위 명령을 수정할 수 있나요?
user="me" 처럼요? 또는 무엇을? 나는 광범위하게 검색했지만 많은 것을 찾을 수 없습니다
마운트 도움말은 별로 도움이 되지 않습니다.
mount --help
Usage: mount -V : print version
mount -h : print this help
mount : list mounted filesystems
mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
mount -a [-t|-O] ... : mount all stuff from /etc/fstab
mount device : mount device at the known place
mount directory : mount known device here
mount -t type dev dir : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
mount --bind olddir newdir
or move a subtree:
mount --move olddir newdir
One can change the type of mount containing the directory dir:
mount --make-shared dir
mount --make-slave dir
mount --make-private dir
mount --make-unbindable dir
One can change the type of all the mounts in a mount subtree
containing the directory dir:
mount --make-rshared dir
mount --make-rslave dir
mount --make-rprivate dir
mount --make-runbindable dir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using -L label or by uuid, using -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say man 8 mount .
답변1
A. sudo mkdir /media/ntfsPartition
- 이렇게 하면 폴더가 생성됩니다.미디어디렉토리에 원하는 이름을 추가할 수 있습니다.
B. sudo blkid
- 마운트하려는 ntfs 파티션의 UUID를 찾으십시오.
C. sudo gedit /etc/fstab
- 하단에 새 줄을 작성하여 마운트하려는 ntfs 파티션에 새 줄을 추가합니다(예: 다음과 같아야 함).
#ntfs_partition
UUID=xxxxxxxxxxxxxxxx /media/ntfsPartition ntfs defauls,uid=1000,gid=1000,noatime 0 0
(D 지점 이전에 터미널에 입력하여 uid 및 gid가 1000인지 확인하십시오 id
.)
D. 파일을 저장합니다.
E. sudo mount -a
- 이것은 ntfs 파티션을 마운트합니다;
F. 완료
*Ubuntu 14.04에서 이러한 방식으로 내 ntfs 파티션을 테스트하고 사용합니다.
이전 버전의 경우 다음을 확인하세요.NTFS 파티션을 자동 마운트하는 방법은 무엇입니까?