How can I tell what kernel version I have installed?
rpm -q kernel --qf "%{NAME} %{ARCH}\n"
Why not just: % rpm -q kernel kernel-smp ?
That should list all of the installed kernel packages.
To list the kernel version of your currently running kernel, use % uname -r
That will display just the kernel version.