Ubuntu provides multiple package management tools, allowing users to install and remove software efficiently. Whether you are using APT, DPKG, or Snap, here’s how you can remove packages in Ubuntu server.
APT (Advanced Package Tool) is the most common way to manage packages in Ubuntu.
To remove a package but keep its configuration files:
sudo apt remove package-name
sudo apt purge package-name
After removing a package, you can clean up unused dependencies with:
sudo apt autoremove
If a package was installed manually using a .deb
file, you can remove it with DPKG.
sudo dpkg --remove package-name
sudo dpkg --purge package-name
Snap packages are managed differently from traditional APT packages.
snap list
sudo snap remove package-name
To free up space and remove residual package data, run:
sudo apt clean && sudo apt autoclean
Removing packages in Ubuntu is straightforward using APT, DPKG, or Snap. Choosing the right method depends on how the package was installed. For system maintenance, always run autoremove
and clean
commands after uninstalling software to keep your system optimized.