Install wireless driver in AlmaLinux / Rocky Linux 8

As of now most modern devices whether it is a PC or Laptop are coming with an inbuilt Wireless card to access the WLAN network. However, to recognize and run these inbuilt hardware components, the OS platforms come with drivers, a program that manages and controls installed hardware. Just like Windows 10, almost all popular Linux distros automatically recognize the installed Wireless adapter to configure the available generic driver for that. However, in case even after installing Linux such as AlmaLinux or Rocky, you won’t be able to access the wireless network, then install the wireless drive manually.

There are two ways to find the required drivers, one is using the official repository of the OS and the other by downloading the binary directly from your WLAN adapter manufacturer.

Find the available Wireless driver packages using DNF:

On your command terminal type:

sudo dnf search wireless

Search Wireless driver packages using DNF

Install wireless drivers using DNF

Once you have got the list of drives check out the available model number that matches your hardware and copy its package name. After that use the DNF package manager to install the same.

For example-

sudo dnf install iwl5000-firmware.noarch

 

If you haven’t found your Wireless card in the DNF repo list then go to your network adapter manufacturer website, download the driver available for Linux and install the script using the below commands-

sudo chmod +x script.sh
sudo ./script.sh

Replace script.sh with the one you have downloaded if it uses some other name.

After the installation, reboot your system to ensure the proper integration of the drive in the system.

 

 

3 thoughts on “Install wireless driver in AlmaLinux / Rocky Linux 8”

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.