割り当てられた遅延で/etc/init.d/sendsigsを使用してkillシグナルを送信するスクリプトを変更し、2回の反復で残りのプロセスをkillするのにかかる時間を短縮しました。正常かどうかにかかわらず、システムでジョブが完了し、シャットダウンと再起動でハングしなくなりました。
以下は、#<---で示された変更を加えた/etc/init.d/sendsigsの一部です。
# Kill all processes.
log_action_begin_msg "Asking all remaining processes to terminate"
killall5 -15 $OMITPIDS # SIGTERM
log_action_end_msg 0
alldead=""
OMITPIDS0="$OMITPIDS"
#for seq in 1 2 3 4 5 6 7 8 9 10; do # this is the original line
for seq in 1 2; do # <--- the above line is replaced by this one.
次に、スクリプトの下部に:
# Upstart has a method to set a kill timeout and so the job author
# may want us to wait longer than 10 seconds (as in the case of
# mysql). (LP: #688541)
#
# We will wait up to 300 seconds for any jobs in stop/killed state.
# Any kill timeout higher than that will be overridden by the need
# to shutdown. NOTE the re-use of seq from above, since we already
# waited up to 10 seconds for them.
while [ -n "$(upstart_killed_jobs)" ] ; do
seq=$(($seq+1))
#if [ $seq -ge 300 ] ; then # this is the original line
if [ $seq -ge 2 ] ; then # <--- I can't wait for another 300 iteration
break
fi
注:元のスクリプトが他のシステムで機能しているため、これは最善の解決策ではない可能性があります。私のようないくつかの提案された解決策が適用されなかったシステムの場合-これは、システムをワークステーションとしてのみ実行しているのではないことを考慮して共有できるものですシャットダウンまたは再起動アイコンをクリックする前に、使用しているすべてのデスクトップアプリケーションを閉じた後に実行される重要なサービス。
使用中のシステムはAsus X550DPラップトップです。
sudo shutdown -h now
完全にシャットダウンするかどうかを確認できます。