I need to stop GNOME/Nautilus from automagically mounting new devices and partitions as they appear to the system. How can I accomplish this in python?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Why would do it in Python? You can just use the commandline, as in:

gconftool-2 --type bool --set /apps/nautilus/preferences/media_automount false

If you really need it to be in Python, then you can use the subprocess module:

import subprocess

def setAutomount(value):
    """
    @type value: boolean
    """
    cmd = ['gconftool-2', '--type', 'bool', '--set', 
            '/apps/nautilus/preferences/media_automount']
    cmd.append(str(value).lower())
    subprocess.check_call(cmd)

setAutomount(False)

But I'm really not sure that it's necessary here.

link|improve this answer
1  
You could do something equivalent with the 'gconf' python module, which wraps libgconf, documented here: library.gnome.org/devel/gconf/stable – Glyph Jun 22 '09 at 12:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.