Linux Root 后 find / -name grub.conf 提示权限不够

图片说明Linux Root 后 find / -name grub.conf 提示权限不够
如何才能拥有此权限

There is FUSE virtual filesystem mounted at ~/.gvfs. For the majority
of filesystem acceses, permissions are ignored for the root
user. However, FUSE virtual filesystems mounts are one of the rare
exceptions. FUSE virtual filesystems normally restricted to user who
mounted them. In this case , the gvfs-fuse-daemon command(run as part
of your desktop session)created this mount, belonging to you, and
no-one else can access it, including root.
只有产生这个挂载的用户才能访问,即便是root也没办法访问。

可以看看文件权限属性 不是root就可以访问所有文件的

用locate试一下

grub.conf一般都是在/boot目录下面吧,直接使用sudo find /boot -name grub.conf,这样你只会到/boot目录下搜索,根本就不会去搜索/root,/run这些你没有权限访问的目录。

find / -name fileName 2>/dev/nul