Rocky linux realtime latest?

Hi, I am interested in using the most real-time version of Rocky Linux. I see some packages that appear to be for Rocky 8: https://rockylinux.pkgs.org/8/rockylinux-rt-x86_64/. Are there packages for the latest version of Rocky (9.3)?

Enable the rt repo and you’ll have access to the real time kernel.

dnf config-manager --set-enabled rt
dnf install kernel-rt

Thanks that worked great. But now when I download the kernel source I can’t install the source rpm or the packages dnf says it needs to install the src rpm. I did dnf download --source kernel-rt.


$ sudo dnf install kernel-rt-5.14.0-284.30.1.rt14.315.el9_2.src.rpm
Last metadata expiration check: 1:21:29 ago on Mon 27 Nov 2023 03:38:57 PM CST.
Error:
Problem: conflicting requests

  • nothing provides gcc-plugin-devel needed by kernel-rt-5.14.0-284.30.1.rt14.315.el9_2.src from @commandline
  • nothing provides glibc-static needed by kernel-rt-5.14.0-284.30.1.rt14.315.el9_2.src from @commandline
    (try to add ‘–skip-broken’ to skip uninstallable packages or ‘–nobest’ to use not only best candidate packages)
    [kevin@rocky1 answers]$ sudo dnf install --nobest kernel-rt-5.14.0-284.30.1.rt14.315.el9_2.src.rpm
    Last metadata expiration check: 1:22:38 ago on Mon 27 Nov 2023 03:38:57 PM CST.
    Error:
    Problem: conflicting requests
  • nothing provides gcc-plugin-devel needed by kernel-rt-5.14.0-284.30.1.rt14.315.el9_2.src from @commandline
  • nothing provides glibc-static needed by kernel-rt-5.14.0-284.30.1.rt14.315.el9_2.src from @commandline
    (try to add ‘–skip-broken’ to skip uninstallable packages)

$ sudo dnf install gcc-plugin-devel glibc-static
Last metadata expiration check: 1:25:30 ago on Mon 27 Nov 2023 03:38:57 PM CST.
No match for argument: gcc-plugin-devel
No match for argument: glibc-static
Error: Unable to find a match: gcc-plugin-devel glibc-static

You need to enable the crb repo. dnf config-manager --set-enabled crb.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.