Skip to content
Follow
Ubuntu Linux

How to Uninstall Software in Ubuntu Linux

Richard
Written by
Richard
Sep 17, 2022 Updated Apr 17, 2026 2 min read
How to Enable or Disable Microsoft Defender Cloud Protection
How to Enable or Disable Microsoft Defender Cloud Protection

You uninstall software in Ubuntu Linux using either the graphical Ubuntu Software application or the command-line `apt` command.

Removing applications frees up disk space and ensures your system runs efficiently by getting rid of unnecessary programs.

For instance, if you no longer need a specific program installed via `apt`, you can completely remove its configuration files as well.

⚡ Quick Answer

Open the App Center, click “Manage,” find your application, and click the trash can icon. You can also use the command line with `sudo apt remove package_name` or `sudo apt purge package_name`. Confirm the removal when prompted.

How to uninstall Software in Ubuntu Linux

Uninstalling software in Ubuntu Linux is simple and frees up disk space.

Ubuntu 26.04’s interface has changed quite a bit. Now, you’ll manage your programs using the App Center. To open it, press your Super key (that’s usually the Windows key) on your keyboard to bring up the GNOME shell search. Then, type “App Center” and click the shopping bag icon.

Ubuntu Software application interface for managing software
ubuntu linux ubuntu software app

When the App Center opens, you’ll see a new layout. Click on the Manage tab to see all your installed programs.

Ubuntu Software dashboard displaying installed applications
ubuntu linux ubuntu software dashboard

Find the app you want to remove using the search bar at the top or by scrolling through your list of installed items.

Uninstalling a software application in Ubuntu Linux
ubuntu linux uninstall software application

Click the trash can icon or the Uninstall button next to the app name.

Delete software button in Ubuntu Software interface
ubuntu linux delete softare button

Confirm your choice. You’ll need to type your user password to finish. Once you do, the app is gone.

Password prompt for installing software in Ubuntu
ubuntu software install password prompt

Sometimes, removing one app might remove others that depend on it. Always check the list of items Ubuntu suggests removing before you click confirm.

How to remove package on the command line console

Why use the terminal? It’s faster for advanced users. When you’re done, you have full control over every file removed from your system.

Removing standard packages

To remove a program, you’ll type this command:

sudo apt remove package_name

To remove the program and its settings, use purge:

sudo apt purge package_name

Cleaning up your system

After removing programs, your system may have leftover files that are no longer needed. To reclaim this space, run this command:

sudo apt autoremove

This command safely removes files that are no longer needed by any installed programs, keeping your system tidy.

Managing Flatpak packages

Ubuntu 26.04 also supports Flatpak apps. To see a list of your installed Flatpaks, type:

flatpak list

To remove a Flatpak app, use this command:

flatpak uninstall package_name

Managing Snap packages

To see your installed Snap packages, type:

snap list

To remove a Snap, type:

sudo snap remove package_name

Conclusion

Uninstalling software in Ubuntu is a breeze, whether you use the App Center Dock or the terminal. Whether you prefer clicking buttons or typing commands, keeping your system clean is a great way to maintain performance. Always double-check what you are removing to ensure your system stays stable.

How do I remove unnecessary software from Ubuntu?

Method #1: Using the apt-get purge Command for Ubuntu Uninstalls. The apt-get purge command can be used to remove packages in Ubuntu (unnecessary packages, including configuration files, listed directories, and files). It deletes the software entirely from the system.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install Additional Software on Ubuntu
Ubuntu Linux How to Install Additional Software on Ubuntu
How to Uninstall Windows Updates in Windows 11
Windows How to Uninstall Windows Updates in Windows 11
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04

0 Comments

Leave a Comment

Your email address will not be published. Required fields are marked *