![]() |
Drivers installed but not "loaded" - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5) +--- Forum: Installing Software (https://www.linuxliteos.com/forums/forumdisplay.php?fid=18) +--- Thread: Drivers installed but not "loaded" (/showthread.php?tid=8467) |
Drivers installed but not "loaded" - Jim0000 - 08-26-2022 I have a new Realtek 88x2bu WiFi dongle and I'm trying to install it in Linux Lite. It installs the equivalent drivers : rtl8812AU_8821AU_linux drivers according to information received. Terminal results: Code: [sudo] password for jim: However, when I go to remove prior to re-installing, this is the result: Code: Welcome to Linux Lite 6.0 jim How to I fix the "not currently loaded" problem? My computer: Code: jim ~ sudo lshw -short Jim Re: Drivers installed but not "loaded" - Valtam - 08-26-2022 (08-26-2022, 09:03 AM)Jim0000 link Wrote: I have a new Realtek 88x2bu WiFi dongle and I'm trying to install it in Linux Mint. Linux Mint? Re: Drivers installed but not "loaded" - stevef - 08-26-2022 Jim, In an earlier thread, a panda dongle was recommended. Is this a panda dongle ? What model did you get ? It's not really clear (to me) what you are trying to do here - did something go wrong during the installation ? Can you link to the instructions you are following ? Steve Re: Drivers installed but not "loaded" - Jim0000 - 08-26-2022 (08-26-2022, 09:59 AM)Jerry link Wrote: [quote author=Jim0000 link=topic=8874.msg59057#msg59057 date=1661504620] Linux Mint? [/quote] My apologies Jerry, that should have been Linux Lite, not Mint. Thanks for posting. I wrote "Linux Mint" out of habit, as I have been using it since 2014. I have just recently discovered Linux Lite. Jim. Re: Drivers installed but not "loaded" - Jim0000 - 08-26-2022 (08-26-2022, 12:12 PM)stevef link Wrote: Jim, Thanks for replying again Steve. Yes, but I could not find one in Australia. The international shipping is prohibitive, at least for the minimal and rare use that the intended machine will be used. Also, I have limited time before going away to a venue where I could use this: I would not receive it in time if I ordered from the US. So I bought this one on ebay on the chance it will work: https://www.ebay.com.au/itm/265289412820 Maybe it will, maybe it won't. Quote:It's not really clear (to me) what you are trying to do here - did something go wrong during the installation ? Ok, I will explain further. I have an older desktop, details in the terminal results above, which I want to plug in an external USB WiFi adapter (dongle?). Please see the above link for a picture of the device. I am following this list of instructions: https://askubuntu.com/questions/1018375/how-do-i-install-driver-for-rtl88 I did get so far as to find the most suitable driver (please see above terminal results). It is showing as installed, but "not loaded" whatever that means. I would like to fix this and get the driver working, and as a result, get the WiFi working on this computer. Apologies for any confusion and lack of information. Jim. Re: Drivers installed but not "loaded" - stevef - 08-26-2022 Jim, The ebay link suggests the dongle has RTL8812BU, but from your post it looks like you've tried installed drivers for rtl8812AU_8821AU. It's hard to tell, but it doesn't look like the AU install completed. Did you post the commands line by line or in one go ? I can't see the 'make' and 'modprobe' commands in your output. Did you get that far ? Can you confirm the device type with Code: lsusb and Code: sudo lshw -C network Once you know the chipset, you can search for a possible driver solution. The install CD may (or may not) be useful. Is there anything linux related on the CD ? Re: Drivers installed but not "loaded" - Jim0000 - 08-27-2022 Ok, thanks for sticking with me on this. Here is the result of the first terminal command: Code: jim ~ lsusb And from the second: Code: sudo lshw -C network Edit: I found this site that mentions the required driver, but don't know how to use it. If it is relevant, that is. https://linux-hardware.org/index.php?id=pci:14e4-1713-17aa-3a23 Also, I could not find a package for the NetLink BCM5906M listed above in the Synaptic Package manager. Jim Re: Drivers installed but not "loaded" - Jim0000 - 08-27-2022 (08-26-2022, 10:25 PM)stevef link Wrote: .................. The provided CD disk is small (3 inch?). My CD drive, on the side of the computer behind the screen, will not accept it. Re: Drivers installed but not "loaded" - stevef - 08-27-2022 Jim, Happy to try to help, but not having the same hardware makes things difficult. Also, if we can't establish how far you got in installing the wrong drivers, there may be complications.... First off, the BCM5906M interface is not the USB dongle. The BCM5906M is the hardware behind the physical RJ45-type socket into which you plug an ethernet cable. You'll notice it doesn't show in the USB list. The driver for that hardware has been included in the linux kernel for some time and we don't need to worry about it. The relevant bit from the lsusb command is Quote:Bus 002 Device 004: ID 0bda:b812 Realtek Semiconductor Corp. RTL88x2bu [AC1200 Techkey] If you search for that hardware in the 'Hardware for Linux' page that you linked to there are mixed results but there are enough 'works' status and references in the Linux Lite hardware database to be optimistic. There seem to be several projects on Github for RTL88x2bu drivers. Having had a quick look, the 'morrownr' project looks like the one I'd select in your position. https://github.com/morrownr/88x2bu-20210702 Take a look at this and see if you trust it. Before starting, I'd 1) Ensure LL is updated. 2) Make a system snapshot (timeshift) and run backups (dejadup) for potential rollback 3) Reboot The instructions below are adapted from 'Installation Steps' from the link https://github.com/morrownr/88x2bu-20210702 to try to remove the steps which aren't relevant, if in doubt, follow the github method. Open a terminal and run the following commands one at a time. Code: sudo apt install -y build-essential dkms git Code: mkdir -p ~/src Code: cd ~/src Code: git clone https://github.com/morrownr/88x2bu-20210702.git Code: cd ~/src/88x2bu-20210702 Code: sudo ./install-driver.sh Follow the instructions in the script. Re: Drivers installed but not "loaded" - Jim0000 - 08-27-2022 (08-27-2022, 06:39 AM)stevef link Wrote: ........................... Can you explain how i do that please? I did a search and could not find any reference to it. |