1. How to install the softwareYumYum list all ## #列出所有安装包yum list instal LED ## #列出已经安装的yum list available ## #列出没有安装的yum &N Bsp Remove software ## #卸载软件yum Install software ## #安装软件yum & nbsp search keywords ## #搜索与关键字相关的软件yum whatprovides Files &nbs P ## #搜索包含此文件的包yum Reinstall software ## #从新安装软件yum localinstall Third-party software ## #安装第三方软件并解决依赖关系yum info software ## #查询软件信息yum & nbsp Groups list ## #列出软件组yum groups install &N Bsp ## #安装组yum groups remove ## #卸载组yum groups &N BSp info ## #查看组信息
2. Source package compilation and installation
./configure #检测系统环境
Make #编译
Make clean
Make install #安装
Make Uninstall
3. Problem solving method for Yum source after installing Google
Need to go to the/ETC/YUM.REPOS.D directory to find Chrome's repo, which is
Google-chrome.repo, delete, or MV somewhere else, then yum clean all, can be solved.
4. Use RPM to solve dependency problems when loading local software such as Qq,mplayer,smplayer
use of the 5.rpm commandRPM # # #底层软件管理工具
-I. # #install
-V # # #显示信息
-H # # #指定包的解密方式为hash
-Q # #查询
-P # # #指定软件包本身 (software not installed)
-L # # #列出软件中文件的名字
--scripts # # #查看软件安装和卸载过程中所执行的动作
-F # # #查询某个文件属于那个安装包
-A # # #所有
-E # # #卸载
--force # # #强制
--nodeps # # #忽略依赖性
History # # #安装历史
combined Use
-ivh
-qi
-qf
-pd
This article from the "Technology life, Simple not simple" blog, please be sure to keep this source http://willis.blog.51cto.com/11907152/1846833
Linux Software Installation