[SOLVED] Wifi fluctuate on BCM43142 adapter

Questions about Wi-Fi and other network devices, file sharing, firewalls, connection sharing etc
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
tshala
Level 1
Level 1
Posts: 6
Joined: Wed Apr 21, 2021 1:32 pm

[SOLVED] Wifi fluctuate on BCM43142 adapter

Post by tshala »

Hello, I have been facing this issue from my previous distro mx linux and since then I have switched to manjaro and to linux mint finally. The wifi strength is around 40-60% even the hotspot is very nearby to my laptop. The problem started when I tried to connect my Bluetooth headset for the first to my laptop. I have noticed that the Bluetooth was incapable of searching devices around it and I somehow got some hint that the drivers can be missing for the Bluetooth and hence I followed this tutorial for manual installation of my adapter BCM43142. The link to the document is here.. https://github.com/winterheart/broadcom-bt-firmware .
This solves the Bluetooth issue but I notice the strength of my wifi is now reduced to half. I thought switching to mint may somehow solve the issues as Ubuntu which its parent have a broader community for solving all sort of issues but it didn't. So for I have tried doing different solution like tried to find different Broadcom drivers via the software manager or upgrading it via all sort of apt commands but it didn't.

Code: Select all

sudo apt purge bcmwl-kernel-source
and

Code: Select all

sudo apt install broadcom-sta-dkms
My system's : inxi -Fxz
System:
Kernel: 5.4.0-58-generic x86_64 bits: 64 compiler: gcc v: 9.3.0
Desktop: Cinnamon 4.8.5 Distro: Linux Mint 20.1 Ulyssa
base: Ubuntu 20.04 focal
Machine:
Type: Laptop System: HP product: HP Notebook v: Type1ProductConfigId
serial: <filter>
Mobo: HP model: 81EC v: 61.29 serial: <filter> UEFI: Insyde v: F.13
date: 07/21/2016
Battery:
ID-1: BAT1 charge: 26.5 Wh condition: 26.5/32.1 Wh (83%)
model: Hewlett-Packard PABAS0241231 status: Full
CPU:
Topology: Dual Core model: Intel Core i5-6200U bits: 64 type: MT MCP
arch: Skylake rev: 3 L2 cache: 3072 KiB
flags: avx avx2 lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx
bogomips: 19200
Speed: 600 MHz min/max: 400/2800 MHz Core speeds (MHz): 1: 569 2: 587
3: 567 4: 553
Graphics:
Device-1: Intel Skylake GT2 [HD Graphics 520] vendor: Hewlett-Packard
driver: i915 v: kernel bus ID: 00:02.0
Device-2: AMD Sun XT [Radeon HD 8670A/8670M/8690M / R5 M330 / M430 /
Radeon 520 Mobile]
vendor: Hewlett-Packard driver: radeon v: kernel bus ID: 01:00.0
Display: x11 server: X.Org 1.20.8 driver: ati,modesetting,radeon
unloaded: fbdev,vesa resolution: 1366x768~60Hz, 1360x768~60Hz
OpenGL: renderer: Mesa Intel HD Graphics 520 (SKL GT2) v: 4.6 Mesa 20.2.6
direct render: Yes
Audio:
Device-1: Intel Sunrise Point-LP HD Audio vendor: Hewlett-Packard
driver: snd_hda_intel v: kernel bus ID: 00:1f.3
Sound Server: ALSA v: k5.4.0-58-generic
Network:
Device-1: Realtek RTL810xE PCI Express Fast Ethernet
vendor: Hewlett-Packard driver: r8169 v: kernel port: 3000 bus ID: 02:00.0
IF: enp2s0 state: down mac: <filter>
Device-2: Broadcom and subsidiaries BCM43142 802.11b/g/n
vendor: Hewlett-Packard driver: wl v: kernel port: 3000 bus ID: 03:00.0
IF: wlp3s0 state: up mac: <filter>
Drives:
Local Storage: total: 931.51 GiB used: 28.09 GiB (3.0%)
ID-1: /dev/sda vendor: Toshiba model: MQ01ABD100 size: 931.51 GiB
Partition:
ID-1: / size: 178.67 GiB used: 28.06 GiB (15.7%) fs: ext4 dev: /dev/sda3
ID-2: swap-1 size: 14.34 GiB used: 0 KiB (0.0%) fs: swap dev: /dev/sda2
Sensors:
System Temperatures: cpu: 42.0 C mobo: N/A gpu: radeon temp: 10 C
Fan Speeds (RPM): N/A
Info:
Processes: 207 Uptime: 7m Memory: 7.67 GiB used: 2.00 GiB (26.0%)
Init: systemd runlevel: 5 Compilers: gcc: 9.3.0 Shell: bash v: 5.0.17
inxi: 3.0.38
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 2 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
sleeper12
Level 21
Level 21
Posts: 14591
Joined: Thu May 25, 2017 3:22 pm

Re: Wifi fluctuate on BCM43142 adapter

Post by sleeper12 »

See if power management is on:

Code: Select all

 iwconfig 
If so, turn it off:

Code: Select all

 sudo sed -i 's/3/2/' /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf 
Reboot
tshala
Level 1
Level 1
Posts: 6
Joined: Wed Apr 21, 2021 1:32 pm

Re: Wifi fluctuate on BCM43142 adapter

Post by tshala »

sleeper12 wrote: Wed Apr 21, 2021 4:39 pm See if power management is on:

Code: Select all

 iwconfig 
If so, turn it off:

Code: Select all

 sudo sed -i 's/3/2/' /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf 
Reboot

Code: Select all

 sudo sed -i 's/3/2/' /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf 
this didn't turned off power management :( . But why turning off power management can solve the issue?
sleeper12
Level 21
Level 21
Posts: 14591
Joined: Thu May 25, 2017 3:22 pm

Re: Wifi fluctuate on BCM43142 adapter

Post by sleeper12 »

Try this one:

Code: Select all

 sudo sed -i 's/wifi.powersave = 3/wifi.powersave = 2/' /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf 
Reboot
tshala
Level 1
Level 1
Posts: 6
Joined: Wed Apr 21, 2021 1:32 pm

Re: Wifi fluctuate on BCM43142 adapter

Post by tshala »

tshala wrote: Thu Apr 22, 2021 12:01 am
sleeper12 wrote: Wed Apr 21, 2021 4:39 pm See if power management is on:

Code: Select all

 iwconfig 
If so, turn it off:

Code: Select all

 sudo sed -i 's/3/2/' /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf 
Reboot

Code: Select all

 sudo sed -i 's/3/2/' /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf 
this didn't turned off power management :( . But why turning off power management can solve the issue?
It changed power management to off.. sorry to misinform, forgot to reboot. I notice an increase in my wifi strength. Thanks, man but I hoped to restore the full strength.
sleeper12
Level 21
Level 21
Posts: 14591
Joined: Thu May 25, 2017 3:22 pm

Re: Wifi fluctuate on BCM43142 adapter

Post by sleeper12 »

Not sure if it will help, but try Disable IPv6:
https://easylinuxtipsproject.blogspot.c ... html#ID2.2
sleeper12
Level 21
Level 21
Posts: 14591
Joined: Thu May 25, 2017 3:22 pm

Re: Wifi fluctuate on BCM43142 adapter

Post by sleeper12 »

Also, update your kernel to 5.4.0-72 & see if that helps.
User avatar
SMG
Level 25
Level 25
Posts: 31914
Joined: Sun Jul 26, 2020 6:15 pm
Location: USA

Re: Wifi fluctuate on BCM43142 adapter

Post by SMG »

While you are updating your kernel, you should run the rest of the updates as well. You are not using the most recent version of Cinnamon and some other files.

The ISO is frozen in time and just because you installed it now does not mean you have the latest software patches for all the software in the ISO. You only have the files which were available at the time the ISO was originally made.
Image
A woman typing on a laptop with LM20.3 Cinnamon.
tshala
Level 1
Level 1
Posts: 6
Joined: Wed Apr 21, 2021 1:32 pm

Re: Wifi fluctuate on BCM43142 adapter

Post by tshala »

sleeper12 wrote: Thu Apr 22, 2021 1:02 am Not sure if it will help, but try Disable IPv6:
https://easylinuxtipsproject.blogspot.c ... html#ID2.2
Thanks a lot, you have stopped a headache. But will disabling IPv6 make restrictions while accessing websites?
tshala
Level 1
Level 1
Posts: 6
Joined: Wed Apr 21, 2021 1:32 pm

Re: Wifi fluctuate on BCM43142 adapter

Post by tshala »

sleeper12 wrote: Thu Apr 22, 2021 1:24 am Also, update your kernel to 5.4.0-72 & see if that helps.
Okay, I ll try
tshala
Level 1
Level 1
Posts: 6
Joined: Wed Apr 21, 2021 1:32 pm

Re: Wifi fluctuate on BCM43142 adapter

Post by tshala »

SMG wrote: Thu Apr 22, 2021 10:57 am While you are updating your kernel, you should run the rest of the updates as well. You are not using the most recent version of Cinnamon and some other files.

The ISO is frozen in time and just because you installed it now does not mean you have the latest software patches for all the software in the ISO. You only have the files which were available at the time the ISO was originally made.
How do I do that now? I am new to mint
sleeper12
Level 21
Level 21
Posts: 14591
Joined: Thu May 25, 2017 3:22 pm

Re: [SOLVED] Wifi fluctuate on BCM43142 adapter

Post by sleeper12 »

Go to Update Manager, click Refresh, then install all the updates it shows.
sleeper12
Level 21
Level 21
Posts: 14591
Joined: Thu May 25, 2017 3:22 pm

Re: Wifi fluctuate on BCM43142 adapter

Post by sleeper12 »

tshala wrote: Fri Apr 23, 2021 12:19 am
Thanks a lot, you have stopped a headache. But will disabling IPv6 make restrictions while accessing websites?
I don't think so, but someone will correct me if I'm wrong. :lol:
User avatar
hglee
Level 6
Level 6
Posts: 1422
Joined: Fri Jun 22, 2018 4:31 pm

Re: Wifi fluctuate on BCM43142 adapter

Post by hglee »

tshala wrote: Fri Apr 23, 2021 12:19 amBut will disabling IPv6 make restrictions while accessing websites?


Someday.

The supply of IPv4 addresses is exhausted. The Internet of Things (IoT) growth increases IPv6-only online resources.


Linux Mint 21 Vanessa, MATE 1.26.0, kernel 5.15.0*, Dell 2-in-1
AMD Ryzen 7 5825U / Barcelo iGPU - 14" WUXGA Touchscreen
MediaTek MT7921 WiFi-6 BT-5.2; 32GB DDR4@3200MHz; XPG 2TB-NVMe
Locked

Return to “Networking”