I use Kubuntu dual booted with Windows 11 in my HP Victus 16. The Wi-Fi speed on Windows is fair enough. However, it is not the case with Ubuntu.
After doing some web searches, I followed this Link and this one. I followed them accordingly, but it did not improve the situation.
Here is the output of lshw -C network
command.
*-network
description: Wireless interface
product: Tiger Lake PCH CNVi WiFi
vendor: Intel Corporation
physical id: 14.3
bus info: pci@0000:00:14.3
logical name: wlo1
version: 11
serial: 38:87:d5:13:9b:ba
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=iwlwifi driverversion=5.19.0-40-generic firmware=72.daa05125.0 QuZ-a0-hr-b0-72.u ip=192.168.0.194 latency=0 link=yes multicast=yes wireless=IEEE 802.11
resources: iomemory:600-5ff irq:19 memory:6015224000-6015227fff
Here is my wireless info script.
Here is the output of the command tail -f /var/log/syslog
: syslog output.
As you see, the wireless card in my system is Tiger Lake PCH CNVi wi-fi. I tried looking for a solution with this keyword but could not find any.
Looking for help regarding this one.
sudo modprobe -r iwlwifi && sleep 5 && sudo modprobe iwlwifi 11n_disable=8
and see if it works better – Jeremy31 Apr 22 '23 at 12:48echo "options iwlwifi 11n_disable=8"| sudo tee /etc/modprobe.d/iwlopts.conf
That commands enables aggressive TX that helps slow intel wifi – Jeremy31 Apr 22 '23 at 14:23modinfo -p iwlwifi
and see that 11n_disable=1 disables 11n functionality and that would make the connection slow and that setting to 8 enables aggressive TX – Jeremy31 Apr 22 '23 at 15:02tail -f /var/log/syslog
use ctrl+c to quit the command when you have results – Jeremy31 Apr 22 '23 at 17:07dmesg -w
and get results for a longer period of time – Jeremy31 Apr 22 '23 at 21:20