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 Uninstall Software in Ubuntu Linux

This post explains how to remove apps from your Ubuntu Linux system. Removing old programs helps keep your computer running smoothly and saves space.

Our previous post showed you how to install additional applications and software packages in Ubuntu Linux.

How to uninstall Software in Ubuntu Linux

Why remove software? Over time, you may download apps you no longer need. What happens when you remove them? Your computer gains more disk space and stays organized.

The interface in Ubuntu 26.04 has changed significantly. We now use the App Center to manage programs. To find it, press the Super (Windows) key on your keyboard to open the GNOME shell search. Type “App Center” and click the icon that looks like a shopping bag.

Ubuntu Software application interface for managing software

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

Ubuntu Software dashboard displaying installed applications

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

Uninstalling a software application in Ubuntu Linux

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

Delete software button in Ubuntu Software interface

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

Password prompt for installing software in Ubuntu

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 is faster for advanced users. What happens when done? You have full control over every file removed from your system.

Removing standard packages

To remove a program, 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 deletes unused dependencies and keeps your system clean.

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 easy using either 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.

Was this guide 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.

2465 articles → Twitter

📚 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

0 responses to “How to Uninstall Software in Ubuntu Linux”

Leave a Reply

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