Is there a way to use the D-link DWA-182 rev A with modern Ubuntu versions? The D-link site only has Linux drivers for rev C and D.
Here's the output oflsusb
for the device:
$ lsbusb
Bus 003 Device 009: ID 2001:3101 D-Link Corp. DWA-182 AC1200 DB Wireless Adapter (rev.A1) [Broadcom BCM43526]
lsusb
should return an alphanumeric code in the format of two sets of four characters separated by a colon. Example:04a9:176b
This number will determine the exact chipset for Rev A. Please edit and include this number. – mchid Nov 21 '22 at 06:53sudo apt update
andsudo apt-get install broadcom-sta-dkms
If everything goes well, reboot and if it's not working immediately, of course, unplug it and plug it back in and if it doesn't automatically come on, runsudo modprobe wl
and if it still doesn't work, unplug it and plug it back in and then runsudo modprobe -r b44 b43 b43legacy ssb brcmsmac bcma
and thensudo modprobe wl
– mchid Nov 21 '22 at 07:32$ sudo apt install broadcom-sta-dkms
– The Bic Pen Nov 21 '22 at 07:38Building initial module for 6.0.6-76060006-generic ERROR (dkms apport): kernel package linux-headers-6.0.6-76060006-generic is not supported
bcmwl-kernel-source
package in the past but I dont remember whether it solved this problem. For anyone else having the same problem, this thread may be useful: https://www.linux.org/threads/pop-os-doesnt-detect-my-wifi-adapter-after-i-updated-to-latest-version.35861/page-4 – The Bic Pen Nov 21 '22 at 08:03