我正在尝试在 ubuntu 12.04 上使用 sshfs 安装远程驱动器。
我遵循以下步骤: http://xmodulo.com/2013/04/how-to-mount-remote-directory-over-ssh-on-linux.html
但当我sshfs
成功做到之后ls
,
我得到:
ls: cannot access sshdrive: Permission denied
total 8
drwxr-xr-x 4 root root 4096 Oct 30 09:10 ./
drwxr-xr-x 26 root root 4096 Apr 23 2013 ../
d????????? ? ? ? ? ? sshdrive/
我该如何解决我的问题?
答案1
执行 usermod 后,确保组成员身份更改生效。
为此,您可以运行:
$ exec su -l $USER
或者,您可以注销并重新登录。