I have a Dell XPS with Ubuntu 20.04 and kernel 5.4.0-33 smoothly running.
I've updated the kernel as suggested by the normal update process, but after rebooting the kernel is missing some modules, mainly the network ones (ath10k
for wifi, and bluetooth too). sudo modprobe ath10k
answers with a fatal error saying that the module file is missing.
I've attempted to update-initramfs
by hand but nothing changed, so I had to go back using the previous version, 33.
What can I do to understand and fix the issue?
As requested by comments, info about my system: * I have installed 20.04 cleanly (no upgrade) and with full disk encryption
This is my wifi card under 5.4.0-33:
$ lspci -nnk | grep -i net -A2
02:00.0 Network controller [0280]: Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter [168c:003e] (rev 32)
Subsystem: Bigfoot Networks, Inc. QCA6174 802.11ac Wireless Network Adapter [1a56:1535]
Kernel driver in use: ath10k_pci
Kernel modules: ath10k_pci
[UPDATE] Under 5.4.0-37 the Kernel modules
and Kernel driver in use
entries are obviously missing, but the card is listed twice and a lot more other modules are missing (i915
, processor_thermal_device
, intel_pch_thermal
,
intel_lpss_pci
,
mei_me
,
snd_hda_intel
,
nouveau
(but not the nvidia, which I'm using),
ath10k_pci
,
rtsx_pci
). You can look at the full lspci
diff here: https://www.diffchecker.com/mVCbTzSL
I've also opened a Launchpad bug: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1883239
This is the modules that are present, notice that the module is missing for the 37
kernel:
$ find /usr/lib/modules -iname ath10k
/usr/lib/modules/5.4.0-28-generic/kernel/drivers/net/wireless/ath/ath10k
/usr/lib/modules/5.4.0-31-generic/kernel/drivers/net/wireless/ath/ath10k
/usr/lib/modules/5.4.0-33-generic/kernel/drivers/net/wireless/ath/ath10k
df -h; df -i
please. – nobody Jun 10 '20 at 07:28find /usr/lib/modules -iname ath10k_*
then you can see available modules for Atheros wlancards. for network cracks please (not me)lspci -nnk | grep -i net -A2
or if it is an usb devicelsusb
please. ` – nobody Jun 10 '20 at 08:03ath10k_pci
is your module for the wlancard and it is loaded. Do you have problems with you internet connection? – nobody Jun 10 '20 at 08:13lspci
saiddisabled
– Alessandro Lai Jun 10 '20 at 08:29