Warum sollte es in Python tun? Sie können nur die Kommandozeile verwenden, wie:
gconftool-2 --type bool --set /apps/nautilus/preferences/media_automount false
Wenn Sie es wirklich brauchen in Python zu sein, dann können Sie die subprocess module verwenden:
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)
Aber ich bin wirklich nicht sicher, dass es notwendig hier.
Sie könnten etwas Äquivalentes mit dem 'gconf' Python-Modul, das libgconf umschließt, hier dokumentiert: http://library.gnome.org/devel/gconf/stable/ – Glyph