软件管理方法

1.查看软件方法:
rpm -qa |grep nginx
2.安装软件方法:
yum install -y nginx或yum localinstall xxx.rpm -y 或 rpm -ivh xxx.rpm或重新安装yum reinstall nginx -y

./configure (配置) ----./configure --help(查看configure选项)
make (编译)
make install (安装)
make clean (卸载)

3.卸载软件方法:
rpm -e --nodeps 软件名 卸载已安装软件

原文地址:https://www.cnblogs.com/zhugq02/p/13584525.html