Disable GNOME's automount with Python - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T03:26:14Zhttp://stackoverflow.com/feeds/question/1025244http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1025244/disable-gnomes-automount-with-python1Disable GNOME's automount with Pythonlfaraone2009-06-22T01:54:08Z2009-06-22T03:27:13Z
<p>Hi,</p>
<p>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?</p>
http://stackoverflow.com/questions/1025244/disable-gnomes-automount-with-python/1025369#10253693Answer by NicDumZ for Disable GNOME's automount with PythonNicDumZ2009-06-22T03:27:13Z2009-06-22T03:27:13Z<p>Why would do it in Python? You can just use the commandline, as in:</p>
<pre><code>gconftool-2 --type bool --set /apps/nautilus/preferences/media_automount false
</code></pre>
<p>If you really need it to be in Python, then you can use the <a href="http://docs.python.org/library/subprocess.html" rel="nofollow">subprocess module</a>:</p>
<pre><code>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)
</code></pre>
<p>But I'm really not sure that it's necessary here.</p>