How7o
  • Home
  • Tools
  • Prank Screens
  • Learn
  • Blog
  • Contact
Reading: Force Close an App in Ubuntu (xkill, System Monitor, kill -9)
Share
How7oHow7o
Font ResizerAa
  • OS
Search
  • Home
  • Tools
  • Prank Screens
  • Learn
  • Blog
  • Contact
Follow US
© 2024–2026 How7o. All rights reserved.
How7o > Learn > OS > Force Close an App in Ubuntu (xkill, System Monitor, kill -9)
OS

Force Close an App in Ubuntu (xkill, System Monitor, kill -9)

how7o
By how7o
Last updated: January 12, 2026
4 Min Read
How to force quit frozen apps in Ubuntu
SHARE

I had this happen on Ubuntu more times than I’d like to admit: an app freezes, the window won’t close, and even clicking “Close” does absolutely nothing. On Windows, I’d smash Ctrl + Alt + Del and end the task—so I went looking for the Ubuntu version of that.

Contents
  • Method 1 (fastest): Force close the frozen window using xkill
    • If xkill doesn’t work (Wayland note)
  • Method 2 (Task Manager style): Use System Monitor to end/kill the process
  • Method 3 (most reliable): Force close an app from the terminal
    • Option A: Kill by app name (pkill)
    • Option B: Find the PID and kill it
  • Which method should you use?
  • Helpful links (internal + outbound)
  • Final thoughts

The good news: Ubuntu has a few easy ways to force close an app in Ubuntu. The fastest (when it works) is xkill. If you want something more “Task Manager-like”, System Monitor is perfect. And if you’re on a server or prefer the terminal, pkill / kill gets the job done every time.

Force close app in Ubuntu using xkill and kill commands

Method 1 (fastest): Force close the frozen window using xkill

This is the closest thing to “click and kill” for a stuck GUI window.

  • Press Alt + F2 (opens the Run dialog on many Ubuntu desktop setups).
  • Type xkill and press Enter.
  • Your cursor turns into a cross / X.
  • Click the frozen app window to force close it.

Cancel tip: If you change your mind, press Esc or right-click to cancel.

If xkill doesn’t work (Wayland note)

On some Ubuntu installs (especially Wayland sessions), xkill may not show the X cursor or it might only work for some apps (usually XWayland apps). If that happens, skip to System Monitor or use the terminal method below.

Method 2 (Task Manager style): Use System Monitor to end/kill the process

If you want the most familiar approach (Windows Task Manager style), this is it.

  • Open System Monitor (search it from Activities / Applications menu).
  • Go to the Processes tab.
  • Find the app (or process) that’s stuck.
  • Click End Process.
  • If it still refuses to close, right-click it and choose Kill.

I like this method because it’s visual and safe—you can double-check you’re killing the right thing.

Method 3 (most reliable): Force close an app from the terminal

If the UI is lagging or you’re working over SSH, terminal commands are the quickest and most reliable way.

Option A: Kill by app name (pkill)

If you know the app/process name, pkill is easy:

pkill firefox

If it won’t close, go stronger:

pkill -9 firefox

Note: -9 is the “hard stop” option. It ends the process immediately, so unsaved work is usually gone.

Option B: Find the PID and kill it

If you’re not sure what the exact process name is, find it first.

ps aux | grep firefox

Or use an interactive view:

top

Once you have the PID (example: 12345):

kill 12345

If it still won’t die:

kill -9 12345

Which method should you use?

  • Quick GUI kill: use xkill
  • Safer GUI method: System Monitor (End Process / Kill)
  • Works everywhere: terminal pkill or kill -9

Helpful links (internal + outbound)

  • GNOME: Kill (close) a program immediately
  • Ubuntu manpage: xkill
  • How to change the welcome message on Ubuntu VPS
  • Set automatic logout timeout in Ubuntu terminal

Final thoughts

Now when an app hangs on Ubuntu, I don’t waste time fighting the frozen window. I try xkill first, and if that’s not available (or I’m on a setup where it doesn’t behave properly), I jump straight to System Monitor or the terminal. Once you use these a few times, it feels just as quick as Task Manager on Windows.

TAGGED:force quitfrozen appkillLinuxpkillSystem MonitorterminalUbuntuxkill

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
[mc4wp_form]
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Copy Link Print
Previous Article Debug PHP like console.log using error_log and server logs How to Debug in PHP Like console.log (echo, error_log, WordPress debug.log)
Next Article Send a simple email in Laravel using Mail::raw and SMTP How to Send a Simple Email in Laravel (Fast SMTP + Mail::raw)
Leave a Comment

Leave a Reply Cancel reply

You must be logged in to post a comment.

FacebookLike
XFollow
PinterestPin
InstagramFollow
Most Popular
Display PHP errors — ini_set + php.ini configuration
How to Display PHP Errors
May 10, 2026
PHP convert string to uppercase — strtoupper and mb_strtoupper
How to Convert a String to Uppercase in PHP
May 10, 2026
PHP string to float conversion with cast, regex cleanup, NumberFormatter
How to Convert a String to Float in PHP
May 10, 2026
PHP merge arrays without duplicates — union operator and array_unique
How to Combine Two Arrays Without Duplicates in PHP
May 10, 2026
PHP delete array element — unset, array_splice, array_filter, array_search
How to Delete an Element from a PHP Array
May 10, 2026

You Might Also Like

Install PHP on Ubuntu — terminal with apt install php command and stylized elephant icon
Web Development

How to Install PHP on Ubuntu (22.04 & 24.04): Step-by-Step Guide

9 Min Read
Check if Laravel scheduler is running (cron + php artisan schedule:run)
Web Development

How to Check if Laravel Scheduler Is Running (Cron + Logs)

6 Min Read
MariaDB restart on Linux — systemctl restart mariadb
Server Management

How to Restart the MariaDB Server on Linux

6 Min Read
Change welcome message on Ubuntu VPS server (MOTD + SSH banner)
Server Management

Change Welcome Message on Ubuntu VPS (MOTD + SSH Banner)

6 Min Read
How7o

We provide tips, tricks, and advice for improving websites and doing better search.

Tools

  • Age Calculator
  • Word Counter
  • Image Upscaler
  • Password Generator
  • QR Code Generator
  • See all tools→

Pranks

  • Fake Blue Screen Prank
  • Hacker Typer
  • Fake iMessage Generator
  • Windows XP Crash Prank
  • Windows 11 Update Prank
  • See all prank screens →

Company

  • About Us
  • Blog
  • Contact
  • Privacy Policy
  • Terms of Service
  • Sitemap
© 2024–2026 How7o. All rights reserved.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?