7 examples for yum

{{ score }}
  # Lists the installed packages
yum list installed
        
{{ score }}
  # your_comment_here
yum search  : searches for  in packages
        
{{ score }}
  # searches for  in the packages
yum search 
        
{{ score }}
  # Search for a command or binary inside any package
yum provides */
        
{{ score }}
  # Lists all the groups of software you can install with yum
yum grouplist
        
{{ score }}
  # yum security patch only (add to cron) - requires yum-security plugin
yum --security update >/dev/null 2>$1
        
{{ score }}
  # Install kernel-devel specific to your current kernel.
yum install "kernel-devel-uname-r == $(uname -r)"