yum is simple to use

1. Introduction to yum

Yum is a software package management tool under Linux, which is equivalent to a software store.

2. How to use

Download software:

  • yum install -y package name
    -y means yes all the way and confirmation all the way.

Uninstall the software:

  • yum remove package name

3. Related options

  • yum list / yum list | grep keyword
    Displays all packages/displays the packages retrieved by yourself.

Guess you like

Origin blog.csdn.net/weixin_45153969/article/details/132575035