fstab을 사용하여 사용자 권한으로 외부 SSD 마운트

fstab을 사용하여 사용자 권한으로 외부 SSD 마운트

다음 명령을 입력했습니다.

sudo mount UUID=17F30CD71ED138A1  -o gid=1000,uid=1000 ~/sandisk_external_drive

제대로 작동했지만 이제 시작 시 설치하고 싶기 때문에 테이블에 항목을 추가했습니다./etc/fstab. 다음 항목은 다음과 같습니다.

UUID=17F30CD71ED138A1             /home/<my-user>/sandisk_external_drive nfs uid=1000,gid=1000,defaults 0 0

하지만 계속해서 다음과 같은 결과가 나타납니다.

> mount.nfs: no mount point provided usage: mount.nfs remotetarget dir
> [-rvVwfnsh] [-o nfsoptions] options:
>         -r              Mount file system readonly
>         -v              Verbose
>         -V              Print version
>         -w              Mount file system read-write
>         -f              Fake mount, do not actually mount
>         -n              Do not update /etc/mtab
>         -s              Tolerate sloppy mount options rather than fail
>         -h              Print this help
>         nfsoptions      Refer to mount.nfs(8) or nfs(5)

이 줄에 문제가 있나요? ? 여러번 시도했지만 실패했어요. 제가 생각하는 문제의 원인은옵션네 번째 열은 어떤 이유로 올바르게 구성되지 않았습니다.

답변1

어떤 이유로 nfs대신에 ntfs-3g.

Linux에서 NTFS 파티션을 마운트하는 방법은 다음과 같습니다.

UUID=0123456789ABCDEF /mnt/win ntfs-3g defaults,noatime,nofail,uid=1000,fmask=0133,dmask=0022,nls=utf8
noatime     - to disable updating last access time on reading files
nofail      - in case the device is not present on boot
nls=utf8    - to properly convert NTFS filenames to Linux
fmask/dmask - to prevent other users from modifying files/folders

답변2

다음과 같이 설치하시면 됩니다.네트워크 파일 시스템파일 시스템, 그것이 무엇인지 알고현지의운전하다.

fstab에서 올바른 or nfs 로 바꾸십시오 .ntfsdrive formatfilesystem type

관련 정보