Ubuntu Linux: Uninstall / Remove Any Installed Software
Q. I'd like to save some disk space so I'd like to remove unwanted software from my HP laptop. How do I uninstall software under Ubuntu / Debian Linux?
A. Both Ubuntu and Debian Linux provide command line as well as GUI tools to delete / remove binary packages.
GUI Package Management Tool
synaptic is graphical management tool of software packages. It allows you to perform all actions of the command line tool apt-get in a graphical environment. This includes installing, upgrading, downgrading and removing of single packages or even upgrading your whole system.
Just click on System > Administration > Synaptic Package Manager
Now you can select any package and click on Mark for Removal popup meni. You can also start GUI tool from command line, enter:
$ synaptic &
Command Line Package Management Tool
apt-get is the command-line tool for handling packages. It is used for adding / removing / updating packages.
Uninstall / Delete / Remove Package
Just use the following syntax:
sudo apt-get remove {package-name}
For example remove package called mplayer, enter:
$ sudo apt-get remove mplayer
Remove package called lighttpd along with all configuration files, enter:
$ sudo apt-get --purge remove lighttpd
To list all installed package, enter:\
dpkg --list
dpkg --list | less
dpkg --list | grep -i 'http'
Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
Related Other Helpful FAQs:
- Linux delete directory with rmdir command
- Linux / UNIX: Delete a file
- Delete or remove a directory Linux command
- Linux: Delete user password
- Howto delete empty lines using sed command under Linux / UNIX
Discussion on This FAQ
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: apt-get_command, binary_packages, command_line_tool, debian_linux, hp_laptop, package_management_tool, package_manager, remove_unwanted_software, synaptic_command, ubuntu, uninstall_software



June 19th, 2008 (3 weeks ago) at 8:54 pm
Hi!
I prefer to use a Terminal instead of GUI (Synaptic Package Manager).
So long!