Situation
I run Ubuntu 16.04 (4.15.0-48-generic) on my desktop and I would like to get my Netgear AC1200 WiFi USB adapter, model A6150 (with Realtek RTL8812BU chipset) to work.
I have followed the solution by chili555 in this SE question, and all the steps terminated successfully. I.e. I have installed drivers from this repo:
https://github.com/cilynx/rtl88x2BU_WiFi_linux_v5.2.4.4_26334.20180126_COEX20171012-5044.git
And I have rebooted my system.
Problem
It doesn't seem to work, i.e. when I unplug the ethernet cable I loose my connection (with the dongel in). I don't know what to do now (and I am very new to linux).
More info
- In the
All Settings
>Network
I don't see anything wifi-related. Does my desktop need to be setup for to use wifi somehow?
- Output of
lsusb
(among others) show that my dongle is found
Bus 002 Device 005: ID 0846:9055 NetGear, Inc.
Outout of
lshw -C network
(entire output)network description: Ethernet interface product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller vendor: Realtek Semiconductor Co., Ltd. physical id: 0 bus info: pci@0000:05:00.0 logical name: enp5s0 version: 06 serial: bc:5f:f4:0d:49:48 size: 1Gbit/s capacity: 1Gbit/s width: 64 bits clock: 33MHz capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168e-3_0.0.4 03/27/12 ip=192.168.137.249 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s resources: irq:17 ioport:d000(size=256) memory:d2104000-d2104fff memory:d2100000-d2103fff
rfkill list all
doesn't output anything.Output of Wireless Info Script: https://paste.ubuntu.com/p/2JbYpzdx7q/
Updates (e.g. based on comments)
sudo modprobe 88x2bu
doesn't produce any output. I.e. it instantaneously asks for the next input, without outputting anything.Output of
dmesg | grep -i rtl
[ 3.054709] r8169 0000:05:00.0 eth0: RTL8168evl/8111evl at 0x (ptrval), bc:5f:f4:0d:49:48, XID 0c900800 IRQ 30
[ 5573.899004] RTW: rtl88x2bu v5.3.1_27678.20180430_COEX20180427-5959
[ 5573.899005] RTW: rtl88x2bu BT-Coex version = COEX20180427-5959
[ 5573.899033] usbcore: registered new interface driver rtl88x2bu
[ 6025.932877] usbcore: deregistering interface driver rtl88x2bu
[ 6028.668674] RTW: rtl88x2bu v5.3.1_27678.20180430_COEX20180427-5959
[ 6028.668675] RTW: rtl88x2bu BT-Coex version = COEX20180427-5959
[ 6028.668705] usbcore: registered new interface driver rtl88x2bu
- Output of
dkms status
:
bbswitch, 0.8, 4.15.0-32-generic, x86_64: installed
bbswitch, 0.8, 4.15.0-33-generic, x86_64: installed
bbswitch, 0.8, 4.15.0-34-generic, x86_64: installed
bbswitch, 0.8, 4.15.0-36-generic, x86_64: installed
bbswitch, 0.8, 4.15.0-39-generic, x86_64: installed
bbswitch, 0.8, 4.15.0-42-generic, x86_64: installed
bbswitch, 0.8, 4.15.0-43-generic, x86_64: installed
bbswitch, 0.8, 4.15.0-48-generic, x86_64: installed
ndiswrapper, 1.60, 4.15.0-48-generic, x86_64: installed
nvidia-384, 384.130, 4.15.0-43-generic, x86_64: installed
nvidia-384, 384.130, 4.15.0-48-generic, x86_64: installed
rtl88x2bu, 5.2.4.4, 4.15.0-48-generic, x86_64: installed (WARNING! Diff between built and installed module!)
rtl88x2bu, 5.3.1, 4.15.0-48-generic, x86_64: built
Output of
modinfo 88x2bu | grep 9055
: NoneOutput of
modprobe -c | grep 0846 | grep 9055
: None
sudo modprobe 88x2bu
and then:dmesg | grep -i rtl
– chili555 Sep 06 '20 at 18:11dmsg
command states versionv5.3.1
and notv5.2.4
as I expected. This is a left over from a previous attempt that I thought I had cleaned up - still: I don't know how to proceed. – Toke Faurby Sep 06 '20 at 18:28dkms status
– Jeremy31 Sep 06 '20 at 19:08modinfo 88x2bu | grep 9055
I suspect it's empty. – chili555 Sep 06 '20 at 19:31modprobe -c | grep 0846 | grep 9055
– Jeremy31 Sep 06 '20 at 20:37