I'm trying to install the EDIMAX EW-7811UTC WiFi adapter on lubuntu 24.04.
First attempt by the apt package rtl8812au-dkms
I have used the command:
> sudo apt install rtl8812au-dkms
After a reboot and at the end of the boot process, I have inserted into the USB port the WiFi adapter but there isn't available any wifi interface. The output of the command sudo lshw -C network is:
> sudo lshw -C network
[sudo] password for user:
*-network
description: Ethernet interface
product: I210 Gigabit Network Connection
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:02:00.0
logical name: enp2s0
version: 03
serial: 00:13:95:5b:bd:16
size: 100Mbit/s
capacity: 1Gbit/s
width: 32 bits
clock: 33MHz
capabilities: pm msi msix pciexpress bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=igb driverversion=6.8.0-54-generic duplex=full firmware=0. 6-5 ip=192.168.127.11 latency=0 link=yes multicast=yes port=twisted pair speed=100Mbit/s
resources: irq:22 memory:91200000-9121ffff memory:91220000-91223fff
*-network
description: Ethernet interface
product: I210 Gigabit Network Connection
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:03:00.0
logical name: enp3s0
version: 03
serial: 00:13:95:5b:bd:17
capacity: 1Gbit/s
width: 32 bits
clock: 33MHz
capabilities: pm msi msix pciexpress bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=igb driverversion=6.8.0-54-generic firmware=0. 6-5 latency=0 link=no multicast=yes port=twisted pair
resources: irq:23 memory:91100000-9111ffff memory:91120000-91123fff
Second attempt by the GitHub driver source
After removing the previous package by the command:
> sudo apt purge rtl8812au-dkms
I have tried to install the driver from GitHub source but I have reached the same negative result.
To install the driver from source I have followed the steps below:
cd /usr/srcsudo git clone https://github.com/morrownr/8812au-20210820.gitcd /usr/src/8812au-20210820/sudo ./install-driver.sh
I can see that the module is installed by following command:
> dkms status
rtl8812au/4.3.8.12175.20140902+dfsg, 6.8.0-54-generic, x86_64: installed
The result of this installation is the same that from apt repository.
On other distribution the driver was ok
In the past I have installed the driver for the same WiFi on lubuntu 22.04 with kernel 5.19.0-41 and in other Linux distribution (Mint, Custom distribution build by Yocto).
The most important difference that I have noted is that lubuntu 24.04 has a kernel version:
> uname -r
6.8.0-54-generic
and if I try to install the wifi adapter on lubuntu 22.04 with kernel 6.8.0.52-generic the installation fails.
Question
How can I install an EDIMAX EW-7811UTC WiFi adapter on a lubuntu 24.04 distribution with kernel 6.8?