To uninstall centos installed software, you need to check your software package format:
1. If you have yum, you can directly execute the command:
yum remove xxx
2. If it is an rpm package, execute the command:
rpm -e xxx
3. If it is a tar package, you need to delete the file directly or execute the command:
make uninstall xxx
Related tutorial recommendations:centos usage tutorial
The above is the detailed content of How to uninstall centos installed software. For more information, please follow other related articles on the PHP Chinese website!