web-dev-qa-db-ja.com

シャットダウン時間が異なるのはなぜですか?

Ubuntu MATE 16.04システムをまったく同じ方法で常にシャットダウンします。 alt+F4 最後のターミナルウィンドウに到達し、他のすべてのアプリケーションが終了するまで、poweroffと入力します。

私の手順は一貫していますが、システムが完全にシャットダウンするのにかかる時間(つまり、スプラッシュスクリーンを見ている時間)は、約3秒から約25秒まで大きく異なります。なぜこれが起こるのですか、どうすればわかりますか?

私はログを読むことができることを知っていますが、これを分析する方法に関するいくつかのヒントが欲しいです

9
Zanna

man 8 shutdownから:

   Once  TIME  has elapsed, shutdown sends a request to the init(8) daemon
   to bring the system down into the appropriate runlevel.

   This is performed by emitting the runlevel(7) event, which includes the
   new  runlevel  in  the  RUNLEVEL  environment  variable  as well as the
   previous runlevel (obtained from the environment or from /var/run/utmp)
   in  the  PREVLEVEL  variable.   An additional INIT_HALT variable may be
   set, this will contain the value HALT when bringing the system down for
   halt and POWEROFF when bringing the system down for power off.

次に、すべてのデーモンプロセスがRUNLEVELの変更を認識し、適切なアクションを実行します。これは、クイックexitから、キャッシュフラッシュへの構成の保存、またはデータベース全体のフリーズに至るまで、何でもかまいません。

各デーモンに設定したロギングのレベルに応じて。 /var/log/*および/var/log/のサブディレクトリに情報が表示される場合があります。

6
waltinator