什么阻止“nobody”用户列出其拥有的目录?

什么阻止“nobody”用户列出其拥有的目录?

这一切都在 LXC 容器中,我以nobody用户身份登录。

$ whoami
nobody
$ ls /share
ls: cannot open directory '/share': Permission denied
$ ls -lha / | grep share
drwxrws---    9 nobody       4000  183 Mar 21 18:30 share

现在,看起来用户nobody无法列出其拥有的目录。

/share是从 NAS 安装的:

$ mount -l | grep share
a_nas:/share/a_nas/my_storage on /share type nfs (rw,nosuid,nodev,noatime,nodiratime,vers=3,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=SOME.IP,mountvers=3,mountport=20048,mountproto=udp,local_lock=none,addr=SOME.IP)

重要的是,我无法访问 NAS 服务器。

相关内容