Disable GNOME's automount with Python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T03:26:14Z http://stackoverflow.com/feeds/question/1025244 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1025244/disable-gnomes-automount-with-python 1 Disable GNOME's automount with Python lfaraone 2009-06-22T01:54:08Z 2009-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#1025369 3 Answer by NicDumZ for Disable GNOME's automount with Python NicDumZ 2009-06-22T03:27:13Z 2009-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>