Not able to Find few RPM for RHEL9
Hi,
I am not able to find numerous RHEL 9 RPM package for download.
In the official page RHEL 8 verison is listed only.
Where can I find RHEL 9 RPM for those??
Here are few names whose RHEL 9 RPM I didn't find -
python3-slip-dbus-0.6.4-11.el8.noarch
fipscheck-lib-1.5.0-4.el8.x86_64
tcp_wrappers-7.6-96.el8.x86_64
libidn-1.34-5.el8.x86_64
dnf-plugin-subscription-manager-1.26.17-1.el8_2.x86_64
rhn-client-tools-2.8.16-13.module+el8.1.0+3455+3ddf2832.x86_64
quota-nls-4.04-10.el8.noarch
rhn-check-2.8.16-13.module+el8.1.0+3455+3ddf2832.x86_64
Thanks
Responses
Hi Vivek,
Either the packages you're looking for are not available for RHEL 9, or they are available from repos that you haven't enabled. :)
$ sudo dnf list python3-slip-dbus
Error: No matching Packages to list
$ sudo dnf list fipscheck-lib
Error: No matching Packages to list
$ sudo dnf list tcp_wrappers
Available Packages
tcp_wrappers.x86_64 7.6-97.el9 epel
$ sudo dnf list libidn
Available Packages
libidn.x86_64 1.38-4.el9 epel
$ sudo dnf list dnf-plugin-subscription-manager
Error: No matching Packages to list
$ sudo dnf list rhn-client-tools
Error: No matching Packages to list
$ sudo dnf list quota-nls
Available Packages
quota-nls.noarch 1:4.06-6.el9 rhel-9-for-x86_64-baseos-rpms
$ sudo dnf list rhn-check
Error: No matching Packages to list
Regards,
Christian
Hi Vivek,
A lot of things have changed in RHEL 9 ... Not all packages that are available for RHEL 8 are available for RHEL 9 ... and the
other way around : Not all packages that are available for RHEL 9 are available for RHEL 8 ! As RHEL 9 is new major release,
it's highly recommended to perform a fresh installation. Regarding the "not enabled repos", in my output above you can see
that libidn and tcp_wrappers are available from the EPEL repositories. So, you will have to add, and enable this repository. :)
sudo subscription-manager repos --enable codeready-builder-for-rhel-9-x86_64-rpms
sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
Regards,
Christian