2009/9/8 Fernando Cassia <fcassia@xxxxxxxxx>: > Is there any automatically updated web page showing the latest greatest > kernel version/build available for a given Fedora version, I mean, without > getting into the repos?. > > Say, if I want to create a shell script to check the latest kernel on the > repos and compare it with whatever is installed on the system, what would be > the URL or place to check? [sam@samwrk ~]$ repoquery kernel | cut -d: -f2 2.6.30.5-43.fc11.i586 If you are using kernel-PAE and comparing to `uname -r` you'll need to get rid of a spurious .PAE on the uname -r output: [sam@samwrk ~]$ repoquery kernel-PAE | cut -d: -f2 2.6.30.5-43.fc11.i686 [sam@samwrk ~]$ uname -r 2.6.30.5-43.fc11.i686.PAE [sam@samwrk ~]$ uname -r | sed -e 's/.PAE//g' 2.6.30.5-43.fc11.i686 repoquery is provided by the yum-utils package. -- Sam -- fedora-list mailing list fedora-list@xxxxxxxxxx To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines