Nautilus 不会自动挂载 USB 存储

Nautilus 不会自动挂载 USB 存储

设备已被识别,可以使用 mount 命令安装(参见Ubuntu 12.04 突然停止识别所有 USB 存储。),但不会自动安装。

在戴尔 Lattitude E-6420 上使用 Ubuntu 12.04。

答案1

gconf-editor现在可能是错误的工具。dconf-editor是新的最爱:-)所以开放dconf-编辑器安装 dconf-editor并导航至org.gnome.desktop.media-handling,您将在其中找到至少两个条目:

  • 自动挂载
  • 自动挂载打开

选中第一个可自动安装媒体,选中第二个可打开已安装媒体的 nautilus 窗口。

您可以在以下答案中找到有关 dconf/gconf 的其他信息:我可以使用 dconf-editor 修改 Gconf 设置吗?

答案2

打开gconf-editor,找到以下路径:

/apps/nautilus/preferences/

并选中 media_automount 框!

或者:

gsettings set org.gnome.desktop.media-handling automount true

答案3

要启用或禁用自动挂载,请打开终端并输入 dconf-editor,然后按 [Enter] 键。

浏览至org.gnome.desktop.media-handling

自动挂载键控制是否自动安装媒体。如果设置为 true,则 Nautilus 将在启动和插入媒体时自动安装媒体,例如用户可见的硬盘和可移动媒体。

还有另一把钥匙org.gnome.desktop.media-handling.automount-open. 这控制是否自动打开自动安装媒体的文件夹。

如果设置为 true,则 Nautilus 将在媒体自动安装时自动打开文件夹。这仅适用于未检测到已知 x-content/* 类型的媒体;对于检测到已知 x-content 类型的媒体,将改为采取用户可配置的操作。这可以按如下所示进行配置。希望这有帮助!引用自这里

答案4

gsettings set org.gnome.desktop.media-handling automount true
gconftool-2 --type bool --set /apps/nautilus/preferences/media_automount true
gconftool-2 --type bool --set /apps/nautilus/preferences/media_automount_open true
gconftool-2 --type bool --set /desktop/gnome/volume_manager/automount_drives true
gconftool-2 --type bool --set /desktop/gnome/volume_manager/automount_media true

相关内容