About 18,000,000 results
Open links in new tab
  1. How to uninstall software installed via Terminal? - Ask Ubuntu

    Oct 16, 2016 · sudo apt-get remove nameOfProgram Or if you want to uninstall the program and also associated data: sudo apt-get purge nameOfProgram That will remove the program. It doesn't always remove the dependencies that were installed to make the program work. To clean up those package you can run this after: sudo apt-get autoremove

  2. How to Uninstall Software Using the Command Line in Linux - How-To Geek

    Aug 12, 2024 · On Ubuntu, use the "sudo apt remove [package_name]" to uninstall the program. On Fedora Linux, the "sudo dnf remove [package_name]" command will uninstall the package. …

  3. Linux Delete and Uninstall Software Command - nixCraft

    Sep 8, 2022 · Explains how to delete and uninstall software on popular Linux distros using a command such as apt, zypper, dnf/yum, apk and more.

  4. How to Uninstall Ubuntu Software and Packages: Easy Guide - wikiHow

    Apr 24, 2025 · To uninstall an application in the terminal, use sudo apt remove <package_name>. To see a list of installed packages, type dpkg -l and press Enter. To use a GUI to uninstall software, open App Center , click Installed to see installed software, select a program to uninstall, and click Remove .

  5. The 5 best ways to uninstall software on Ubuntu - FOSS Linux

    May 4, 2019 · Once you’ve located your selected Flatpak package name, use the following command in the terminal to delete it from your system. sudo flatpak uninstall program; That’s it. Those are the alternative ways one can use to uninstall software using a …

  6. What is the correct way to completely remove an application?

    Sep 15, 2012 · You can safely use sudo apt-get remove --purge application or sudo apt-get remove applications 99% of the time. When you use the purge flag, it simply removes all config files too. Which may or may not be what you want, depending on if …

    Missing:

    • Terminal

    Must include:

  7. How to completely remove application in Ubuntu - simplified.guide

    Removing a program through apt remove or apt-get remove often leaves behind configuration files and shared dependencies. These remnants can clutter the operating system and potentially cause conflicts or errors during future software installations or upgrades.

  8. How to Uninstall Software Using the Command Line in Linux

    Dec 20, 2024 · To uninstall software using YUM, follow these steps: Open a terminal window by pressing Ctrl+Alt+T or searching for "Terminal" in your system’s application menu. Use the following command to list all installed software packages on your system: yum list installed. Find the package you want to uninstall from the list of installed packages.

  9. Ubuntu Linux Uninstall / Remove Any Installed Software

    Jun 13, 2024 · Remove the snap without saving a snapshot of its data: $ snap remove htop --purge. Summing up. Using the CLI or GUI option, you can remove or uninstall packages and other applications on your Ubuntu Linux system. For more info, see the following manual pages using the man command or help command: $ man apt $ man apt-get $ man synaptic

  10. How to Uninstall a Program on Ubuntu: A Beginner-Friendly Guide

    Dec 7, 2024 · 1. Uninstalling a Program via the Command Line (Terminal) The terminal is one of the most efficient ways to uninstall software on Ubuntu. Here are a few methods to do so: Method 1: Using apt-get remove. If you installed the software using apt-get, you can easily remove it with this command: sudo apt-get remove program-name Explanation:

Refresh