web-dev-qa-db-ja.com

ターミナルからXfceを安全にシャットダウンするにはどうすればよいですか?

shutdownrebootなどを探していません。メニューの「シャットダウン」ボタンをクリックするのと同じ効果を持つコマンドを実行して、ターミナルからXubuntuをシャットダウンする方法を知りたい。

この質問 に似ていますが、Xubuntu/XFCE用です。

7

あなたが望むのはxfce4-session-logoutオンラインマンページ )だと思います。

マンページからの抜粋(再フォーマット、フィルタリング):

   The  xfce4-session-logout command allows you to programmatically logout
   from your Xfce session. It requests the session manager to display  the
   logout  confirmation  screen,  or,  if  given  one  of the command-line
   options below, causes the session manager to take the requested  action
   immediately.

OPTIONS:
   --logout     Log out without displaying the logout dialog.
   --halt       Halt without displaing the logout dialog.
   --reboot     Reboot without displaying the logout dialog.
   --suspend    Suspend without displaying the logout dialog.
   --hibernate  Hibernate without displaying the logout dialog.
   --fast       Do  a  fast shutdown.  This instructs the session manager not to
                save the session, but instead to quit everything quickly.

シャットダウンするには、使用します

xfce4-session-logout --halt

再起動するには、使用

xfce4-session-logout --reboot

アクションを手動で選択できるダイアログを取得する場合は、引数なしで実行します。

xfce4-session-logout 
11
Byte Commander

これもチェックしてください。これは、ディストリビューションに依存しない、単純なbashスクリプトであり、yadおよびsystemctlのみに依存しています https://Gist.github.com/harish2704/25857caf89076d5a78e996df3fa6ac56

0
harish2704