I need to install a specific kernel version on R9.2- how to do?
Rocky 9.2 comes with
5.14.0-284.11.1.el9_2.x86_64
I need to install:
5.14.0-284.30.1.el9_2.x86_64
Yum/DNF wants to install a later version (5.14.0-427.18.1.el9_4) which is not desired.
Please let me know the complete procedure for installing the slightly newer kernel that I am looking to install. Reason that the specific kernel needed is related to devops considerations and their team’s request.
Hi, you can try with dnf --showduplicates list <package name>
and see if this version is up on your repo, if not just download manually as @nazunalika said and install.
Forgive my confusion- but I’m getting a ton of errors trying to manually dl/install the x86_64 packages i see on my other hosts with the same .30 kernel version, ie.:
[root@hostname]# yum install kernel-5.14.0-284.30.1.el9_2.x86_64.rpm
Last metadata expiration check: 2:30:13 ago on Wed 29 May 2024 06:21:30 AM PDT.
Error:
Problem: conflicting requests
nothing provides kernel-core-uname-r = 5.14.0-284.30.1.el9_2.x86_64 needed by kernel-5.14.0-284.30.1.el9_2.x86_64
nothing provides kernel-modules-core-uname-r = 5.14.0-284.30.1.el9_2.x86_64 needed by kernel-5.14.0-284.30.1.el9_2.x86_64
nothing provides kernel-modules-uname-r = 5.14.0-284.30.1.el9_2.x86_64 needed by kernel-5.14.0-284.30.1.el9_2.x86_64
(try to add ‘–skip-broken’ to skip uninstallable packages or ‘–nobest’ to use not only best candidate packages)
and
[root@hostname]# yum install kernel-modules-core-5.14.0-284.30.1.el9_2.x86_64.rpm
Last metadata expiration check: 2:34:36 ago on Wed 29 May 2024 06:21:30 AM PDT.
Error:
Problem: conflicting requests
nothing provides kernel-uname-r = 5.14.0-284.30.1.el9_2.x86_64 needed by kernel-modules-core-5.14.0-284.30.1.el9_2.x86_64
(try to add ‘–skip-broken’ to skip uninstallable packages or ‘–nobest’ to use not only best candidate packages)
there seems to be a procedure that i am missing. which packages do i need? what order are they to be installed? thanks again!