Yum check-update // check all software packages that can be updated Yum update // download all software packages installed in the update system Yum upgrade // a large-scale version upgrade. Unlike yum update, the old obsolete package is also upgraded. Yum install <packages> // install the new software package Yum update <packages> // update the specified Software Package Yum remove <packages> // uninstall the specified Software Package Yum groupinstall <groupnames> // install the software package in the specified Software Group Yum groupupdate <groupnames> // update the software package in the specified Software Group Yum groupremove <groupnames> // uninstall the software package in the specified Software Group Yum grouplist // view installed and available software GROUPS IN THE SYSTEM Yum list // list all rpm packages that can be installed, updated, and installed in the resource library Yum list <regex> // list the rpm packages that match the regular expression in the resource library that can be installed, updated, and installed. Yum list available // list all the rpm packages that can be installed in the resource library Yum list available <regex> // list all the rpm packages that can be installed that match the regular expression in the resource library Yum list updates // list all the rpm packages that can be updated in the resource library Yum list updates <regex> // lists all updatable rpm packages that match the regular expression in the resource library. Yum list installed // list all installed rpm packages in the resource library Yum list installed <regex> // lists all installed rpm packages that match the regular expression in the resource library. Yum list extras // list rpm packages installed but not included in the resource library Yum list extras <regex> // lists the installed rpm packages that match the regular expression but are not included in the resource library. Yum list recent // list packages recently added to the resource library Yum search <regex>/* checks the names, descriptions, summary, and listed maintainers of all available software and searches for and Regular Expressions Value of expression matching */ Yum provides <regex> // checks the files contained in the software package and the functions provided by the software to find the values that match the regular expression. Yum clean headers // clear the cache rpm header file Yum clean packages // clear the rpm package files in the cache Yum clean all // clear cache rpm header files and package files Yum deplist <packages> // displays the dependency information of the software package. |