ユーザーログアウト時のスクリプト実行(非rootユーザー)


8

私は大学の研究室で、ubuntu 12.10を1で実行していますが、root権限を持っていません。ログアウト時にスクリプトを実行する必要があります。これは可能ですか?

注:これはおそらくこの質問の複製ですが、指定された回答は非常に謎めいており、具体的な指示はありません。


グラフィカルログインか「コマンドライン」ログインかによって異なります
geirha

これはグラフィカルなログインです。
geo909 2013

3
私はあなたがあなたが望むものを実行するログアウトスクリプトを書いて、それからgnome-session-quitそのようなものでログアウトできると思います。
Adobe

@adobeうーん、ありがとうございます。私の場合、それは良い回避策のように思えます。特権を持たないユーザーがこの状況に対処する簡単な方法を持っているように見えないのは奇妙ですが、私はおそらく担当者が低いために投票できないようです。
geo909 2013

回答:


4

これはgnome_save_yourself方法の段階的な手順です。テストしてみましょう。

  1. 次のコードを~/Desktop/execute_script_on_shutdown.shhttp://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. OSをログアウトまたはシャットダウンする(Ubuntu)
  2. ログインする
  3. AAAAAAAAAAAAAAAAAAAAAAAAAAAデスクトップに名前が付けられているファイルを確認します。

    ls -l ~/Desktop/AAAAAAAAAAAAAAAAAAAAAAAAAAA

ファイルが表示されれば、すべてOKです。これでshutdown_script.sh、ニーズに合わせてを編集できます。またexecute_script_on_shutdown.sh、ログイン時に実行する(または起動時に自動実行可能にする)ことも忘れないでください。



残念ながら、私はしばらくキャンパスの外にいるので、gnomeデスクトップにアクセスできません。これがテストされて機能する場合、私はそれを答えとして受け入れることができます..
geo909

Ubuntu 12.10でテスト済み
totti

これはUnityで動作しますか?
ジル 'SO-邪悪なことをやめなさい'

1
Ubuntu 12.10でのテストが正常に行われ、統一性がある
totti
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.