使用 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 中替换nfsntfs : 正确的drive format或。filesystem type

相关内容