Skip to content

Instantly share code, notes, and snippets.

@arttuladhar
Last active September 1, 2015 04:41
Show Gist options
  • Save arttuladhar/8c6795afc41323ce20ff to your computer and use it in GitHub Desktop.
Save arttuladhar/8c6795afc41323ce20ff to your computer and use it in GitHub Desktop.
Yum Essentials

##List Package

yum list available (yum list)
yum list installed

##Search Packages

yum search <keyWord>

Install/Remove/Update Package

yum install <packageName>
yum remove <packageName>
yum update <packageName>
yum info <packageName>

Repo

yum repolist
yum repolist all
yum --enablerepo=<repoSource> install <repoName>

Groups

yum grouplist
yum groupinstall "groupName"
yum groupinfo "groupName"
yum groupupdate "groupName"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment