About Linux FAQ

Browse More FAQs:

CentOS / Red Hat Linux Find Out Latest Available Updated Package or Kernel Version

Posted by Vivek Gite [Last updated: June 17, 2008]

Q. I know how to find out current running kernel version under CentOS Enterprise Linux 4.6 x86_64, but how do I find out latest available kernel version? How do I find out if it's the latest one? How to find the latest release version for package called xyz or kernel package?

A. You can simply use yum command to find out more about latest version available under your CentOS system. To list all packages with updates available in the yum repositories.

yum list updates syntax

Use the following syntax and you are allowed to use wild cards (the single quotes will keep your shell from expanding the globs):
yum list updates {package-name}
yum list updates 'package-name*'
yum list updates '*package-name*'

For example, find out if latest updated version of kernel or php package, enter:
# yum list updates 'php*'
OR
# yum list updates 'kernel*'
Sample output:

Loading "installonlyn" plugin
Loading "security" plugin
Setting up repositories
Reading repository metadata in from local files
Skipping security plugin, no data
Updated Packages
kernel.i686                              2.6.18-53.1.21.el5     updates    

You can list currently installed package version by typing any one of the following command:
# rpm -q kernel
OR
# yum list installed 'kernel*'
Or you can list multiple packages on separated by whitespace:
# yum list installed 'kernel*' 'php*'
Sample output:

Loading "installonlyn" plugin
Loading "security" plugin
Installed Packages
kernel.i686                              2.6.18-53.1.4.el5      installed
kernel.i686                              2.6.18-53.1.19.el5     installed
kernel.i686                              2.6.18-53.1.21.el5     installed
kernel.i686                              2.6.18-53.1.6.el5      installed
kernel.i686                              2.6.18-8.1.15.el5      installed
kernel-devel.i686                        2.6.18-8.1.15.el5      installed
kernel-devel.i686                        2.6.18-53.1.4.el5      installed
kernel-devel.i686                        2.6.18-53.1.6.el5      installed
kernel-devel.i686                        2.6.18-53.1.19.el5     installed
kernel-devel.i686                        2.6.18-53.1.21.el5     installed
kernel-headers.i386                      2.6.18-53.1.21.el5     installed

Finally, you can apply updated version using yum command itself:
# yum update kernel.i686
Sample output:

Loading "installonlyn" plugin
Loading "security" plugin
Setting up Update Process
Setting up repositories
Reading repository metadata in from local files
Skipping security plugin, no data
Resolving Dependencies
Skipping security plugin, no data
--> Populating transaction set with selected packages. Please wait.
---> Package kernel.i686 0:2.6.18-53.1.21.el5 set to be installed
--> Running transaction check

Dependencies Resolved

=============================================================================
 Package                 Arch       Version          Repository        Size
=============================================================================
Installing:
 kernel                  i686       2.6.18-53.1.21.el5  updates            13 M

Transaction Summary
=============================================================================
Install      1 Package(s)
Update       0 Package(s)
Remove       0 Package(s)         

Total download size: 13 M
Is this ok [y/N]: y
Downloading Packages:
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing: kernel                       ######################### [1/1] 

Installed: kernel.i686 0:2.6.18-53.1.21.el5
Complete!

Don't forget to reboot your system so that you can boot into latest kernel version:
# reboot

E-mail this to a friend      Printable version

Related Other Helpful FAQs:

Discussion on This FAQ

  1. yoander Says:

    You can get more info about a package typing

    rpm -qi package-name

Leave a Reply

We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

*
To prove you're a person (not a spam script), type the security word shown in the picture. Click on the picture to hear an audio file of the word.
Click to hear an audio file of the anti-spam word

Tags: , , , , , , , , ,

Copyright © 2006-2008 nixCraft. All rights reserved - TOS/Disclaimer - Privacy policy - Sitemap - Powered by Open source software.