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 > Free Laravel, PHP, WordPress & Server Tutorials > 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
Bun runtime — faster JS toolkit replacing npm in Laravel projects
How to Install Bun Runtime on Ubuntu (And Use It in a Laravel Project)
May 24, 2026
Tailscale mesh — peer-to-peer connections between devices, coordination server
How to Install Tailscale on Ubuntu (Zero-Config Mesh VPN for Self-Hosters)
May 24, 2026
Caddy server — automatic HTTPS, 3-line Caddyfile vs 25-line nginx config
How to Install Caddy Server on Ubuntu (Automatic HTTPS, Drop-in nginx Alternative)
May 24, 2026
Cloudflare Tunnel — outbound-only connection from server, no inbound port forward
How to Install Cloudflare Tunnel on Ubuntu (Expose Local Services, No Port Forwarding)
May 24, 2026
WireGuard encrypted tunnel between server and clients with lock icons
How to Set Up WireGuard VPN on Ubuntu (Server, Linux Client, and iOS)
May 24, 2026

You Might Also Like

Run Laravel queue workers with Supervisor
Web Development

How to Run Laravel Queue Workers in Production with Supervisor

12 Min Read
fail2ban shield blocking incoming brute-force probes, log file feeding the scanner
Server Management

How to Install fail2ban on Ubuntu (SSH, nginx, and WordPress Filters)

10 Min Read
Automatic logout timeout for command line in Ubuntu (TMOUT 300s)
Server Management

Automatic Logout Timeout for Command Line in Ubuntu (TMOUT 300s)

5 Min Read
Nginx redirect www to non-www or vice versa
Server Management

How to Redirect www to non-www (or vice versa) in Nginx

5 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?