yum remove <package_name>
uninstalls (removes in RPM and Yum terminology) the package, as well as any packages that depend on it. As when you install multiple packages, you can remove several at once by adding more package names to the command:
~]# yum remove foo bar baz
install
command, remove can take, as arguments, package names, glob expressions, file lists or package provides.
install
syntax.
~]#yum groupremove "KDE (K Desktop Environment)"
~]#yum groupremove kde-desktop
~]#yum remove @kde-desktop
yum
to remove only those packages which are not required by any other packages or groups by adding the groupremove_leaf_only=1
directive to the [main]
section of the /etc/yum.conf
configuration file. For more information on this directive, refer to Section 1.3.1, “Setting [main] Options”.