如何在 ubuntu 19.10 中禁用 USB 驱动器的自动挂载?

如何在 ubuntu 19.10 中禁用 USB 驱动器的自动挂载?

我试过按照步骤在 18.04 中有效,但在 19.10 中无效:

    Create a file /etc/dconf/pofile/local with following content:
    # cat /etc/dconf/pofile/local
    user-db:user
    system-db:local

    Create a file /etc/dconf/db/local.d/00-media-automount with following content:

    # cat /etc/dconf/db/local.d/00-media-automount
    [org/gnome/desktop/media-handling]
    automount=false
    automount-open=false

    After creating the file, apply the changes using below command :

    # dconf update


在 18.04 中我们可以找到新的规则,dconf dump /但在 19.10 中它没有显示 local.d 中新添加的规则。dconf-editor对于这两个默认值仍然为 true。

有什么想法可以让 gnome 再次尊重 local.d 吗?

答案1

啊,我刚刚才明白过来。 必须DCONF_PROFILE将 设置为配置文件名。这里需要是local。如果没有设置,则默认会查找/etc/dconf/profile/user。因此将文件名更改为user是更好的选择。

答案2

更简单的选择:运行 dconf-editor,转到 org.gnome.desktop.media-handling

相关内容