Linux Wiki
Yum

yum is a command-line package management tool used by Red Hat Enterprise Linux, Fedora, CentOS, and several others.

Usage[]

Installing a package[]

  • yum install -y mariadb

Uninstalling a package[]

  • yum remove -y mariadb

Update a specific package (and dependencies)[]

  • yum update -y mariadb

Update all installed packages[]

  • yum update -y

Search for a package to install[]

  • yum search mariadb

Installing a package (skip broken)[]

  • yum install -y mariadb --skip-broken