我想sshfs
在我的 Debian 机器上挂载一个远程目录,比如在/work
. 所以我将我的用户添加到fuse
组中并运行:
sshfs user@remote.machine.net:/remote/dir /work
一切正常。但是,在启动时安装目录会非常好。所以我尝试了/etc/fstab
下面给出的条目:
sshfs#user@remote.machine.net:/remote/dir /work fuse user,_netdev,reconnect,uid=1000,gid=1000,idmap=user 0 0
sshfs
要求输入密码并几乎正确安装。几乎是因为我的常规user
无法访问已安装的目录,当我运行时ls -la /
,我得到:
d????????? ? ? ? ? ? work
如何通过 fstab 获得正确的权限?