You are not logged in.
Hi,
I just updated to kernel 5.16.3 and then I did a reboot but wifi didn't work. My wifi card is Mediatek MT7921e, I don't know what to do. I tried with 'sudo modprobe -r m7921; modprobe mt7921e' but nothing happens.
Also, wlan0 disappeared when I did 'ip link'.
What can I do?
Thanks!
Offline
Read https://bbs.archlinux.org/viewtopic.php?id=57855 and post some useful information like
uname -a; lspci -k; lsusb; rfkill; ip a
And a complete system journal ("sudo journalctl -b", in doubt redirect that into a file and usb-walk it to a system w/ network access to upload it)
Offline
I had the same issue on version 5.16.3 of the kernel, downgrading my kernel is serving as a temporary fix.
Offline
Same data request and also "downgrade to what version"?
You can also check around https://lore.kernel.org/lkml/fed8a57f-8 … ing.org/T/
Edit: https://bbs.archlinux.org/viewtopic.php?id=273641
Last edited by seth (2022-01-29 16:07:11)
Offline
I fixed the problem by:
1) grep the output of
modinfo mt7921e | grep alias
for example:
alias: pci:v000014C3d00007961sv*sd*bc*sc*i*
2) sudo vim /etc/modprobe.d/mt7921e.conf
add the following line:
alias pci:v000014C3d00000608sv*sd*bc*sc*i* mt7921e
3) sudo vim /etc/udev/rules.d/99-mt7921e.rules
add the following line:
SUBSYSTEM=="drivers", DEVPATH=="/sys/bus/pci/drivers/mt7921e", ATTR{new_id}="14c3 0608"
4) reboot
wifi is now working : )
Offline