使用 Python 禁用 GNOME 自动挂载
我需要阻止 GNOME/Nautilus 自动安装系统中出现的新设备和分区。 我怎样才能在Python中完成这个?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么要用 Python 来做呢? 您可以只使用命令行,如下所示:
如果您确实需要在Python中使用它,那么您可以使用 子流程模块:
但我真的不确定这里是否有必要。
Why would do it in Python? You can just use the commandline, as in:
If you really need it to be in Python, then you can use the subprocess module:
But I'm really not sure that it's necessary here.