回答:
[強制終了]ダイアログボックスにアクセスするには、⌘+ ⌥+を押すescか、アップルメニュー(画面の左上隅)を使用してを選択しForce Quit...
ます。問題のあるアプリを選択し、[強制終了]ボタンをクリックします。
コマンドライン(/ Applications / Utilities / Terminal)を使用してアプリを強制終了することもできます。
killall 'Google Chrome'
アクティビティモニターアプリ(/アプリケーション/ユーティリティ)を使用することもできます。アプリを選択して[終了]ボタンをクリックします。
次に、下にスライドするダイアログでをクリックします
Force Quit
。
からの別の方法Terminal
:
ps auxww | grep -i 'google chrome' | grep -v grep | awk '{ print $2 }' | xargs kill
または強制終了するには:
ps auxww | grep -i 'google chrome' | grep -v grep | awk '{ print $2 }' | xargs kill -9
これは、画面が応答しない場合、またはSpinning Wheel of Deathを取得したが、何らかの方法で端末に到達できる場合に役立ちます(例:SSH経由)
コマンドラインの方法で、以下を端末に貼り付けます(Chromeの例):
while read -r p; do
kill -9 $p
done < <(ps -x | grep "Google Chrome.app" | perl -pi -e 's/^\s*(\d+)\s+.*/$1/g;print')