การดำเนินการสคริปต์เมื่อออกจากระบบของผู้ใช้ (ไม่ใช่ผู้ใช้รูท)


8

ฉันอยู่ในแล็บของมหาวิทยาลัยที่ใช้อูบุนตู 12.10 ด้วยความสามัคคีและฉันไม่มีสิทธิ์พิเศษรูท ฉันต้องเรียกใช้สคริปต์เมื่อออกจากระบบ เป็นไปได้ไหม

หมายเหตุ: นี่อาจเป็นคำถามที่ซ้ำกันอย่างไรก็ตามคำตอบที่ให้นั้นค่อนข้างเป็นความลับและไม่มีการระบุทิศทางที่เฉพาะเจาะจง


ขึ้นอยู่กับว่าเข้าสู่ระบบกราฟิกหรือเข้าสู่ระบบ "บรรทัดคำสั่ง"
geirha

มันเป็นการเข้าสู่ระบบแบบกราฟิก
geo909

3
ฉันเดาว่าคุณสามารถเขียนสคริปต์ออกจากระบบซึ่งทำงานในสิ่งที่คุณต้องการจากนั้นออกจากระบบgnome-session-quitหรืออะไรทำนองนั้น
Adobe

@adobe อืม .. ขอบคุณดูเหมือนว่าจะมีวิธีแก้ปัญหาที่ดีในกรณีของฉัน เป็นเรื่องแปลก แต่ผู้ใช้ที่ไม่มีสิทธิ์พิเศษดูเหมือนจะไม่มีทางจัดการกับสถานการณ์นี้ได้อย่างตรงไปตรงมา .. Btw ฉันดูเหมือนจะไม่สามารถลงคะแนนได้อาจเป็นเพราะตัวแทนต่ำ
geo909

คำตอบ:


4

นี่คือขั้นตอนตามขั้นตอนของ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ลงชื่อเข้าใช้ด้วย (หรือทำให้สามารถเรียกใช้งานได้โดยอัตโนมัติเมื่อเริ่มต้น)



น่าเสียดายที่ฉันจะอยู่นอกมหาวิทยาลัยซักพักแล้วและฉันไม่สามารถใช้เดสก์ท็อป GNOME ได้ หากสิ่งนี้ผ่านการทดสอบและใช้งานได้ฉันสามารถยอมรับได้ว่าเป็นคำตอบแม้ว่า ..
geo909

ทดสอบกับ Ubuntu 12.10
totti

ใช้กับ Unity ได้หรือไม่
Gilles 'SO- หยุดความชั่วร้าย'

1
ทดสอบเรียบร้อยแล้วบน Ubuntu 12.10, ด้วยความสามัคคี
totti
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.