# Search for a package by keyword.
yum search keyword# Install package.
yum install package# Display description and summary information about package.
yum info package# Install package from local file named package.rpm
rpm -i package.rpm# Remove/uninstall package.
yum remove package# Install software from source code.
tar zxvf sourcecode.tar.gz
cd sourcecode
./configure
make
make install