I'm new to Linux and recently installed Zorin OS 17.3 Core on my laptop. I’m having trouble getting my Wi-Fi to work. I’ve tried looking up solutions, but I’m still stuck.
Can anyone guide me through the process of installing the right Wi-Fi drivers? Any help would be much appreciated!
Did You take a Look in the ''Additional Drivers'' Tab in Software & Updates if there is a Driver offered?
And is Your System run in Wayland or X11/Xorg? You can check that in Settings>About. When it is running in Wayland, You could try it with switching to Xorg.
To do that, go to the Login Screen (not the Lock Screen). On the Login screen, click on Your Profile so that the Password Field appears. It has to be appeared. When it is appeared, You should see a Gear Icon in the bottom right Corner. Click on it and choose ''Zorin Desktop on Xorg'' and then log in.
Hi @Luffy78 , I am a bit concerned that no wifi info came back with the terminal command I gave you. According to a Brave A.I. result came back with two possible options in terms of which chipset is present:
HP Victus WiFi Chip
The HP Victus Gaming laptop 15 typically comes with a Wi-Fi 6 (802.11ax) wireless card, which is often a Realtek RTL8852AE or RTL8852BE model.3 Some configurations may also include an Intel Wi-Fi 6 card, such as the Intel AX200 or AX210, depending on the specific model and release year.4 For example, the HP Victus 15L Gaming Desktop features a Realtek RTL8852BE Wi-Fi 6 (2x2) and Bluetooth 5.3 wireless card.3 However, it is important to note that some users have reported issues with Intel Wi-Fi cards not working in certain HP Victus models, and Realtek cards are often recommended as a more compatible alternative.2
Sometimes, as in Dell notebooks, the BIOS can have Wi-fi enabled or disabled. Can you press F10 at boot time, this should get you into the BIOS. Check to see if wireless is enabled or disabled there. Also check for any function keys that have a wi-fi symbol on it, it sonetimes needs to be pressed with an Fn key. Alternatively, look for a physical switch on the side of the laptop.
Do you have Dualboot with Windows? In device manager you can find out more about your wifi card (which model, drivers...)
Or you can take a look on the manufacturers site to find out the specifications of your wlan card.
Before we add a ppa and compile a driver like rtl8852be (or ae) it would be better to know exactly what is needed.
When your computer is up to date hardware it could help to install a newer kernel , e.g. with mainline tool, to have better hardware support.
You could install the driver with adding this repo:
If you have already installed the driver with the repo from Larry (lwfinger) and it doesn't work, please remove it first. It is no longer maintained.
The installation instruction for this repo is described at github.
If this doesn't help (because actually the driver should also be in the kernel) I'd try the linked solution of arch linux (you can use this solution in all Linux distros) to add kernel parameters to etc/default/grub. They disable energy saving functions of the card.
It is not difficult to do this and you can easily go back if it has not the desired effects.
This wlan card often makes problems in linux.
Here is how you can do it. Enter in terminal
"sudo nano etc/default/grub"
This command opens the file as root with nano, that is a texteditor.
Navigate with arrow keys to the line that begins with
GRUB_CMDLINE_LINUX_DEFAULT
and add "rtw89_pci.disable_aspm_l1=y rtw89_pci.disable_aspm_l1ss=y rtw89_core.disable_ps_mode=y" at the end.
(Some computers also seem to need
rtw89_pci.disable_clkreq=y)
Then it looks like this. If you have more entries of grub boot parameters than quiet and splash here, please keep them:
Then press ctrl+o to save the changes, Enter to confirm and ctrl+x to exit.
Then enter
"sudo update-grub"
and reboot.
That is important. Otherwise the changes are not applied.
When it does not work and you want to remove the added parameters, follow the same procedure and delete the added parameters in the the file, save it, update grub and reboot.
Please make sure that secure boot and fast boot in your BIOS and fast startup in Windows are disabled. They can prevent wifi drivers from being loaded correctly.