skip to Main Content

I have to install falcon-sensor rpm package for Crowdstrike to be present on server and it needed libn1 RPM package as dependencies.

I can get it from https://rpmfind.net/ as below and able to install on RHEL8.

#dnf install https://rpmfind.net/linux/centos/7.7.1908/os/x86_64/Packages/libnl-1.1.4-3.el7.x86_64.rpm

but i do not want to download it from rpm finder website.

I would like to do it using redhat repository similarly we do for other rpm packages ex. telnet,

#yum install libnl

Whenever i am hitting above command getting below error.

No match for argument: libnl
Error: Unable to find a match: libnl

I have tried enabling below repositories of RHEL 8.

codeready-builder-for-rhel-8-rhui-rpms        Red Hat CodeReady L enabled: 1,842
codeready-builder-for-rhel-8-rhui-source-rpms Red Hat CodeReady L enabled:   489
*epel                                         Extra Packages for  enabled: 4,401
rhel-8-appstream-rhui-rpms                    Red Hat Enterprise  enabled: 8,420
rhel-8-baseos-rhui-rpms                       Red Hat Enterprise  enabled: 3,378
rhel-8-baseos-rhui-source-rpms                Red Hat Enterprise  enabled:   779
rhui-client-config-server-8                   Red Hat Update Infr enabled:     5

How can i get libnl rpm by enabling repositories in RHEL 8?

2

Answers


  1. It looks like libnl was explicitly removed in RHEL8, so you need to find the RHEL8 version of the RPM you are trying to install.

    Login or Signup to reply.
  2. You can go the link and this will take you the rpm and then you can download it ad install it manually using rpm command.
    But the package was never added to RedHat global repository for RHEL8 so you might not find it in the repository.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search