How do I uninstall or delete installed software under Linux operating systems?
Different Linux distributions comes with different tools to remove the software installed under Linux.
First, open terminal (bash prompt).
You must be login as root user to run any one of the following command.
Remove Software under Red Hat / RHEL / Fedora / CentOS Linux
Use rpm or yum command to delete the software.
To list the installed software type
rpm -qa | less
rpm -qa {software-name}
yum list | less
yum list {software-name}
To get information about httpd package, enter:
rpm -qa httpd
yum list httpd
To remove a software use rpm or yum command as follows
rpm -e {software-name}
yum remove {software-name}
To delete a package called httpd, enter:
rpm -e httpd
yum remove httpd
Delete / Uninstall Software Under Debian / Ubuntu Linux
To list installed software type:
dpkg --list
dpkg --list | less
dpkg --list | grep apache
To delete the software, enter:
sudo apt-get remove {package-name}
sudo apt-get remove apache
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- My 10 UNIX Command Line Mistakes
- Linux: 20 Iptables Examples For New SysAdmins

- 25 PHP Security Best Practices For Sys Admins
- The Novice Guide To Buying A Linux Laptop
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
Facebook it - Tweet it - Print it -




{ 2 comments… read them below or add one }
I wish back my Windows xp program.
Which kinda? You can use wine under linux to run many. Even softwares like photoshop. And many common softwares are available at linux like skype, VLC, teamviewer and much more.