如果我没有管理员权限,如何在GNOME注销期间运行脚本?


18

我想在退出GNOME会话之前运行脚本,以警告自己是否忘记了将Pendrive插入计算机的警告。

但是,我发现的所有解决方案对我来说还不够:

  • 这个类似的问题建议编辑/etc/gdm/PostSession/Default文件,但是我没有执行此操作的权限。(并且该文件当前在我的计算机上为空,因此没有现有的挂钩可以利用)

  • 我还发现该帖子提出了一种解决方法,但是根据第一条答复,如果我关闭计算机而不是仅注销计算机,则该帖子不起作用。


Answers:


7

在使用Gnome时,您可以使用下面提到的Python脚本改编而成的Python脚本。

它需要Gnome注销(即gnome-session-quit)(或gnome shutdown),这是在GUI中使用注销时发生的。AFAIK没有进程可以通过命令sudo shutdown -h 0或来阻止关闭sudo poweroff。执行时,shutdown它会将SIGTERM交给所有进程,并给他们几秒钟退出(执行一些非root用户无法编辑的脚本之后)。如果没有退出,进程将被SIGKILL强制杀死。

这是gnome_save_yourself方法的逐步过程。让我们做一个测试。

  1. 将以下代码另存为~/Desktop/execute_script_on_shutdown.sh (来自http://www.linuxquestions.org/questions/linux-desktop-74/gnome-run-script-on-logout-724453/#post3560301

    #!/usr/bin/env python
    
    #Author: Seamus Phelan
    
    #This program runs a custom command/script just before gnome shuts 
    #down.  This is done the same way that gedit does it (listening for 
    #the 'save-yourself' event).  This is different to placing scipts 
    #in /etc/rc#.d/ as the script will be run before gnome exits.
    #If the custom script/command fails with a non-zero return code, a 
    #popup dialog box will appear offering the chance to cancel logout
    #
    #Usage: 1 - change the command in the 'subprocess.call' in 
    #           function 'session_save_yourself' below to be what ever
    #           you want to run at logout.
    #       2 - Run this program at every gnome login (add via menu System 
    #           -> Preferences -> Session)
    # 
    #
    
    import sys
    import subprocess
    import datetime
    
    import gnome
    import gnome.ui
    import gtk
    
    
    class Namespace: pass
    ns = Namespace()
    ns.dialog = None
    
    
    def main():
        prog = gnome.init ("gnome_save_yourself", "1.0", gnome.libgnome_module_info_get(), sys.argv, [])
        client = gnome.ui.master_client()
        #set up call back for when 'logout'/'Shutdown' button pressed
        client.connect("save-yourself", session_save_yourself)
        client.connect("shutdown-cancelled", shutdown_cancelled)
    
    
    def session_save_yourself( *args):
            #Lets try to unmount all truecrypt volumes
    
    
        #execute shutdowwn script
        #########################################################################################
        retcode = subprocess.call("bash /home/totti/Desktop/shutdown_script.sh", shell=True)
        ##########################################################################################
        if retcode != 0:
            #command failed  
            show_error_dialog()
        return True
    
    def shutdown_cancelled( *args):
        if ns.dialog != None:
            ns.dialog.destroy()
        return True
    
    
    def show_error_dialog():
        ns.dialog = gtk.Dialog("There was a problem running your pre-shutdown script",
                               None,
                               gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
                               ("There was a problem running your pre-shutdown script - continue logout", gtk.RESPONSE_ACCEPT))
        if ns.test_mode == True:
            response = ns.dialog.run()
            ns.dialog.destroy()
        else:
            #when in shutdown mode gnome will only allow you to open a window using master_client().save_any_dialog()
            #It also adds the 'Cancel logout' button
            gnome.ui.master_client().save_any_dialog(ns.dialog)
    
    
    
    #Find out if we are in test mode???
    if len(sys.argv) >=2 and sys.argv[1] == "test":
        ns.test_mode = True
    else:
        ns.test_mode = False
    
    if ns.test_mode == True:
        main()
        session_save_yourself()
    else:
        main()
        gtk.main() 
    
  2. 使它可执行:

    chmod +x ~/Desktop/execute_script_on_shutdown.sh
    
  3. 将以下内容另存为 ~/Desktop/shutdown_script.sh

    #!/usr/bin/bash
    touch ~/Desktop/AAAAAAAAAAAAAAAAAAAAAAAAAAA  
    
  4. 执行主脚本

    bash ~/Desktop/execute_script_on_shutdown.sh
    

现在您感觉脚本正在等待某事

  1. 注销或关闭操作系统(Ubuntu)
  2. 登录
  3. 检查AAAAAAAAAAAAAAAAAAAAAAAAAAA在桌面上命名的文件。

    ls -l ~/Desktop/AAAAAAAAAAAAAAAAAAAAAAAAAAA
    

如果看到文件,则一切正常。现在,您可以编辑shutdown_script.sh以满足您的需要。还请记住execute_script_on_shutdown.sh在登录时执行(或使其在启动时自动可执行)。


1

如果要在所有情况下都阻止会话,则需要root特权。没有办法解决。root用户可以始终使用kill -9您的进程。我很惊讶关机不会使gnome发出“自行保存”信号。另外,我相信“ PostSession”脚本仅在gnome-session终止之后(并且我相信)仅在Xserver终止之前运行,这意味着您不是要在屏幕上显示警告的地方(如果我是对的。

可能起作用的是Gnome应用程序,其中a)对“自己保存”的gnome事件做出反应,b)对SIGTERM做出反应,就像对“ self-selfself”做出反应一样。除此之外,您无能为力,尤其是没有root权限的情况下。

但是,您可以解决非root用户的问题:编写一个PostSession脚本,该脚本可以执行您想要的操作,并建议具有root权限的人将其部署到所有计算机上,因为它是一种对用户有很大帮助的明智工具。通常,具有root特权的家伙会得到报酬,以使/使用户感到高兴。:-)

您要解决的问题是什么?插入笔式驱动器后,为什么不注销会话?

您可以拥有一个显示“不要忘记拔出设备电源!”的dbus客户端。当gvfs宣布在USB设备上卸载文件系统时。但是我不知道这种方法效果如何,甚至不能达到您的目的。


这是我在计算机实验室的帐户;如果我注销时忘记了pendrive插入的电源,可以在回家时保持其状态。这也是为什么我没有根本特权的原因(不幸的是,在这里向管理员询问任何事情是一个非常官僚的过程)。我要怎么做才能像您说的那样成为dbus客户?我从未使用过类似的工具,也找不到任何文档来告诉我搜索时gcfs支持哪些消息。
hugomg 2012年

0

我终于设法测试了我提到的第二个选项中的Python脚本。事实证明,它在要求关闭时也确实起作用,而不仅仅是在重启时起作用。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.