195

Every time I plug a USB stick in, nautilus opens a new window with the contents of the drive. I would like to disable this auto-opening of the nautilus window, but I would like the actual auto-mount to keep working. Is this possible?

Dominik
  • 139
Anton Cherkashyn
  • 4,044
  • 3
  • 20
  • 18

5 Answers5

303

The simplest option is to open a terminal with Ctrl+Alt+T, and type:

gsettings set org.gnome.desktop.media-handling automount-open false
Zanna
  • 70,465
ish
  • 139,926
80

Turns out, it is. You will need dconf-editor tool, which can be installed by with sudo apt-get install dconf-tools. Run dconf-editor in your terminal. Browse to org -> gnome -> desktop - media-handling. Uncheck automount-open.

Anton Cherkashyn
  • 4,044
  • 3
  • 20
  • 18
  • 3
    On Ubuntu 14.10, you just need to install "dconf Editor" (dconf-editor). Run it once it's been added to your Launcher. Then do the same thing. – colan Jan 03 '15 at 01:48
21

The setting corresponding to izx's to disable automatically launching nemo in the cinnamon desktop is:

gsettings set org.cinnamon.desktop.media-handling automount-open false
kynan
  • 2,207
1

For MATE Desktop Environment, which uses the Caja file manager:

gsettings set org.mate.media-handling automount-open false

or use Caja File Management Preferences (caja-file-management-properties) - on Media tab uncheck Browse media when inserted checkbox.

Not for Gnome or Cinnamon desktop environments, however MATE/Caja is a close relative.

N0rbert
  • 99,918
Tymek
  • 160
-1

Using GUI in debian gnome desktop:

Open dconf-editor then go to org -> gnome -> desktop - media-handling. There uncheck automount.

SHIVA
  • 109
  • 2
  • This will disable auto-mounting altogether. OP only wants do disable the pop-up windows after auto-mount. -1 – David Foerster Nov 29 '17 at 11:59
  • yes, it disables the auto-mounting also. my answer is only for disabling pop-up window. – SHIVA Nov 29 '17 at 12:55
  • No, it's not. Please read the description of the Dconf key org.gnome.desktop.media-handling.automount (“If set to true, then Nautilus will automatically mount media such as user-visible hard disks and removable media on start-up and media insertion.”) as opposed to .automount-open (“If set to true, then Nautilus will automatically open a folder when media is automounted.”). – David Foerster Nov 29 '17 at 15:33