Windowsでプログラムが応答を停止した場合、ほとんどのユーザーは、キーボードのCtrl + Alt + Deleteタスクマネージャー(Task Manager)オプションを押して、そこからプログラムを閉じることで、プログラムを停止する方法を知っています。このアプローチは、 UbuntuのようなLinuxディストリビュー(Linux)ションに完全に移行するわけではありませんが、プログラムがクラッシュしたときにオプションが不足しているという意味ではありません。
それどころか、CMDを使用してUbuntuでプログラムを閉じる方法はたくさんあります。ターミナルの使用に慣れている場合は、killallやxkillなどのコマンドを使用して、問題のあるプログラムを強制的に閉じるか、代わりにシステムモニター(System Monitor)アプリを使用できます。
システムモニターを使用して、実行中のUbuntuプロセスを強制的に閉じる(Using The System Monitor To Force Close a Running Ubuntu Process)
ターミナルを使用してUbuntu(Ubuntu)で開いているプロセスを閉じるのは簡単ですが、初心者はこれを行うことに抵抗があるかもしれません。ただし、Ubuntuユーザーは、クラッシュしたプログラムを強制的に閉じるためにターミナルの近くに行く必要はありません。代わりに、システムモニター(System Monitor)アプリを使用できます。
システムモニター(System Monitor)は、タスクマネージャー(Task Manager)がWindowsPC(Windows PCs)で行うのと同じように機能します。PCで実行中のすべてのプロセスが一覧表示され、 CPU(CPU)、RAM、およびディスクの使用状況に関するリアルタイムの情報が提供されます。また、応答しない、または直接閉じることができないクラッシュしたソフトウェアを強制的に閉じることもできます。
- システムモニター(System Monitor)を使用してUbuntuでプログラムを強制終了するには、 Ubuntuドックの下部にある[アプリケーション(Show Applications)の表示]ボタンを押します。[アプリケーション(Applications)]リストで、[システムモニター]アイコンをクリックして起動(System Monitor)します。
- システムモニター(System Monitor)アプリは、デフォルトの[プロセス(Processes)]タブが表示された状態で起動します。表示されていない場合は、上部の[プロセス(Processes)]タブをクリックします。プロセスリストで、クラッシュしたプログラムの1つまたは複数のプロセスを見つけて見つけ、エントリを右クリックして、[キル(Kill)]オプションを押します。または、プロセスを選択して、[システムモニター(System Monitor)]ウィンドウの下部にある[プロセスの終了(End Process)]ボタンを押します。
- システムモニター(System Monitor)は、実行中のプロセスを終了するかどうかの確認を求めます。確認するには、 [プロセス(Kill Process)の強制終了]ボタンを押します。
成功した場合、プロセスはシステムモニター(System Monitor)プロセスリストから消えるはずです。プログラムに開いているウィンドウがある場合、このウィンドウもこの時点で閉じる必要があります。
システムモニター(System Monitor)がプログラムを正常に閉じなかった場合は、代わりにターミナルを使用してみる必要があります。
xkillコマンドを使用して開いているウィンドウを閉じる方法(How To Close An Open Window Using The xkill Command)
ほとんどの場合、システムモニター(System Monitor)ソフトウェアはUbuntu上のプログラムを強制的に閉じます。そうでない場合は、端末に切り替えて、応答しないプログラムを閉じる必要があります。
ありがたいことに、 xkill(xkill)と呼ばれる使いやすいコマンドがあり、ウィンドウを開いたままプログラムを強制的に閉じることができます。
- 最新バージョンのUbuntuのほとんどには、xkillパッケージがインストールされているはずですが、インストールされていない場合は、使用する前にまず(xkill)xkillをインストールする必要があります。ターミナルを開き、sudo aptinstallxorg-xkillと入力してこれを行います。インストールしたら、xkillまたはsudoxkillと入力して使用を開始します。
- 端末出力は、ボタン1でクライアントを強制終了するウィンドウを選択する(select the window whose client you wish to kill with button 1)ように指示します。つまり、マウスを使用して開いているウィンドウをクリックします。xkillがこれを閉じます。強制終了されると、端末の出力は終了する前に強制終了の作成者(killing creator)メッセージで応答します。
これは、操作可能なGUI(GUI)ウィンドウを備えたプログラムを含め、目に見えて応答しないプログラムに対してのみ機能します。
pkill、kill、またはkillallコマンドを使用してUbuntu(Ubuntu Using)でプログラムを強制的に閉じる
xkillを使用するには、GUIで(GUI)Ubuntuを使用している必要があります。GUIがインストールされていないUbuntuのヘッドレスバージョン(Ubuntu Serverなど)を実行している場合は、代わりにpkill、kill、またはkillallコマンドを使用する必要があります。
killコマンドとpkillコマンドは、PCで実行されている単一のプロセスを終了しますが、killallは関連するすべてのプロセスを強制終了します。一部のプログラム(Google Chromeなど)は複数のシステムプロセスを使用するため、killまたはpkillを使用しても、プログラムが応答しなくなった場合に必ずしもそれらを終了するとは限りません。
- killを使用するには、それに割り当てられているプロセスID番号( PID )を知っている必要があります。ターミナルを開き、topと入力して、現在実行中のプロセスのリストを表示します。プロセスID番号はPID列にあり、プロセス/プログラムの名前はコマンド(Command)列にあります。
- killを使用して端末を停止するには、 kill pidと入力し、 pidをプロセスIDに置き換えます(たとえば、kill 582)。動作しない場合は、代わりにsudokillpidと入力してください。(sudo kill pid)プロセスが正常に終了しても、余分な端末出力が発生することはありませんが、topをもう一度入力して再確認できます。
- pkillコマンドにはプロセスID番号は必要ありませんが、パッケージ名は必要です。これは、[コマンド(Command)]列の下の最初のトップ(top)を使用して確認できます。準備ができたら、pkill processと入力し、 (pkill process)processをパッケージ名に置き換えます(または、プロセスが終了しない場合はsudo pkill process)。killと同様に、 pkillコマンドが成功しても、メッセージや出力は返されません。
- プログラムに複数のプロセスがある場合は、killallコマンドを使用して、それらすべてを一度に終了できます。pkillと同様に、これはパッケージ名を使用します。topを使用して、(top)コマンド(Command)列の下でこれを検索します。killallを使用するには、 killallprocessまたはsudokillall processと入力し、 (killall process )processをパッケージ名に置き換えます。pkillと同様に、コマンドが成功した場合、端末にメッセージは返されません。
効果的なUbuntuメンテナンス(Effective Ubuntu Maintenance)
実行中のソフトウェアが応答を停止した場合でも、Ubuntuは制御を維持するためのツールを提供します。ターミナルを使用してUbuntuでプロセスを閉じる方法がわかったので、他のクールなLinuxターミナルコマンド(cool Linux terminal commands)を利用してPCをバックアップしたり、コマンドを終了するのではなく一時停止したりできます。
プログラムのクラッシュはまれにしか発生しませんが、発生頻度が高い場合は、Ubuntuのインストールに問題がある可能性があります。問題を解決するには、Ubuntuがクラッシュする一般的な理由(common reasons for Ubuntu crashes)のいくつかを調べる必要があります。
Forcefully Close a Program in Ubuntu
When a program stops responding in Windows, most uѕers know how to stop it by pressing Ctrl + Alt + Delete on their keyboard, prеssing the Task Managеr option and cloѕing it from there. That approach doesn’t quite transfer to Linux distributions like Ubuntu, but that dоesn’t mean that you’re short of options when a program crashes.
On the contrary—there are quite a few ways to close a program on Ubuntu using CMD. If you’re comfortable using the terminal, you can use commands like killall or xkill to force troublesome programs to close, or you can use the System Monitor app instead.
Using The System Monitor To Force Close a Running Ubuntu Process
While it’s easy enough to close an open process in Ubuntu using the terminal, beginners might not feel comfortable doing this. But an Ubuntu user doesn’t need to go near the terminal to force close a crashed program—you can use the System Monitor app instead.
The System Monitor works a lot like the Task Manager does for Windows PCs. It lists all the running processes on your PC, as well as giving you real-time information on your CPU, RAM, and disk usage. It also allows you to force close any crashed software that won’t respond or close directly.
- To force close a program in Ubuntu using the System Monitor, press the Show Applications button at the bottom of the Ubuntu dock. In your Applications list, click on the System Monitor icon to launch it.
- The System Monitor app will launch with the default Processes tab visible—if it doesn’t, click on the Processes tab at the top. In the processes list, find and locate the process (or processes) for your crashed program, right-click the entry, then press the Kill option. Alternatively, select the process and press the End Process button at the bottom of the System Monitor window.
- System Monitor will ask for confirmation that you do want to end the running process. To confirm, press the Kill Process button.
If it was successful, the process should disappear from your System Monitor processes list. If the program had an open window, this window should also close at this point.
If System Monitor didn’t successfully close the program, you’ll need to try using the terminal instead.
How To Close An Open Window Using The xkill Command
In most cases, the System Monitor software will forcefully close a program on Ubuntu. If it doesn’t, then you’ll need to switch to the terminal to close any non-responding programs.
Thankfully, there’s an easy-to-use command called xkill that will allow you to forcefully close any program with an open window.
- Most modern versions of Ubuntu should come with the xkill package installed but, if you find it isn’t installed, you’ll need to install xkill first before you can use it. Open a terminal and type sudo apt install xorg-xkill to do this. Once it’s installed, simply type xkill or sudo xkill to begin using it.
- The terminal output will tell you to select the window whose client you wish to kill with button 1. In other words, use your mouse to click on an open window—xkill will close this for you. Once killed, the terminal output will respond with a killing creator message before ending.
This will only work for programs that are visibly not responding, including any programs with a GUI window that you can interact with.
Forcefully Closing a Program on Ubuntu Using pkill, kill Or killall Commands
Using xkill requires you to be using Ubuntu with a GUI. If you’re running a headless version of Ubuntu without a GUI installed, such as Ubuntu Server, then you’ll need to use the pkill, kill or killall commands instead.
The kill and pkill commands will terminate any single process running on your PC, while killall will kill all related processes. Some programs (such as Google Chrome) use multiple system processes, so using kill or pkill may not necessarily end them if the program stops responding.
- To use kill, you’ll need to know the process id number (PID) assigned to it—open a terminal and type top to view a list of currently running processes. You’ll find the process id number under the PID column and the name of the process/program under the Command column.
- To stop a terminal using kill, type kill pid, replacing pid with your process id (for instance, kill 582). If it doesn’t work, type sudo kill pid instead. A successful process termination shouldn’t result in any extra terminal output, but you can type top again to double-check.
- The pkill command doesn’t require a process id number, but it does require the package name. You can check this using top first under the Command column. Once you’re ready, type pkill process, replacing process with the package name (or sudo pkill process if the process won’t terminate). As with kill, a successful pkill command will return no messages or output.
- If a program has multiple processes, you can use the killall command to terminate them all at once. Like pkill, this uses the package name—use top to find this under the Command column. To use killall, type killall process or sudo killall process, replacing process with the package name. Like pkill, no messages will be returned at the terminal if the command is a success.
Effective Ubuntu Maintenance
Even when running software stops responding, Ubuntu gives you the tools to stay in control. Now you know how to close a process in Ubuntu using the terminal, you can take advantage of other cool Linux terminal commands to backup your PC, pause running commands rather than ending them, and more.
A crashing program should be a rare occurrence, but if it’s happening more often than it should, it could point to a problem with your Ubuntu installation. You’ll need to look into some of the common reasons for Ubuntu crashes to (hopefully) resolve your issues.