|
|
< Day Day Up > |
|
Recipe 2.17. Getting Information on Installed Packages with Yum2.17.1 ProblemYou want to know what packages are installed on your system, or get information about specific packages. 2.17.2 SolutionUse Yum's querying commands. To list all installed packages, use: # yum list installedTo search for specific packages, use: # yum list installed | grep -i tux
tuxracer i386 0.61-23
tuxkart i386 0.2.0-3To show information on a package, use: # yum info tuxracerTo show packages with available updates, use: # yum list updates2.17.3 DiscussionYou can get all the same information using RPM queries, but Yum does it a little more easily. 2.17.4 See Also
|
|
|
< Day Day Up > |
|