FUSE 文件系统对 nautilus 隐藏
我已经为 Linux 编写了一个 FUSE 驱动程序,当我安装它时,我会在 nautilus 侧栏中看到一个条目。我不想要这个 - 卸载按钮甚至不起作用。我想在我安装的熔断文件系统的 nautilus 侧栏中隐藏此条目。我不想将其添加到 fstab 中,因为以 root 身份运行它会打开安全漏洞。我可以在选项行或代码本身中添加任何内容以防止它在 nautilus 中显示吗?
I have written a FUSE driver for linux, and when I mount it I get an entry in the nautilus sidebar. I do not want this - the unmount button doesnt even work. I would like to hide this entry in the nautilus sidebar for my mounted fuse filesystem. I dont want to add it to the fstab because running it as root opens security holes. Is there anything I can add to the options line or the code itself to prevent it from showing in nautilus?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信,如果您的挂载点位于
/media
下(FHS)。使用
/mnt
下的挂载点应该会使 Nautilus 忽略文件系统。I believe Nautilus will only show those sidebar entries if your mount point is under
/media
(the designated path for "removable media" under the FHS).Using a mount point under
/mnt
should make Nautilus ignore the filesystem.