this post was submitted on 25 May 2024
10 points (100.0% liked)
Linux Mint
1719 readers
1 users here now
Linux Mint is a free Linux-based operating system designed for use on desktop and laptop computers.
Want to see the latest news from the blog? Set the Firefox homepage to:
where is a current or past release. Here's an example using release 21.1 'Vera':
https://linuxmint.com/start/vera/
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
did the
lspci -vv
command, if the network controller is the WiFi chip, then I got:Network Controller: Realtek Semiconductor Con., Ltd. Device b85b. Subsystem: Hewlett-Packard Company Device 88e6. Flags: fast devsel, IRQ 255, IOMMU group 10 I/O ports at f000 [disabled] [size=256] Memory at fce00000 (64-bit, non-prefetchable) [disabled] [size=1M] Capabilities: <access denied>
not sure if that's the right thing. I also found another command that supposedly returns only the wireless card
lspci -vq | grep -i wireless -B 1 -A 5
but that only returns the following line:pcilib: Error reading /sys/bus/PCI/devices/0000:00:08.3/label: Operation not permitted
I did the
sudo dmesg
command, but it returned so much info I'm not sure what's relevant or not. Is there anything specific within the log I should be looking for?If sometimes permissions are missing, try putting
sudo
in front of the commandThe chip seems to be a Realtek
b85b
. Asking Google showed that there have been issues with this chip previously.As I don't see the driver that is used from the output from
lspci -vv
(I does display it on my system), I am not sure whether any driver is loaded at all. If the wifi interface is not shown insudo rfkill --list
, which shows all available wireless interfaces, that is probably the case.This website also collects some helpful tips for solving issues with Realtek wifi devices on Linux Mint and Ubuntu 22.04, which is the basis of LM.
Edit: According to this post (in German, however the links are in English) on the issues of somebody with the same wifi chip, it should be working in kernels 6.2 and above.
I suggest downloading the 'edge' version of LM, as it should have newer kernel and firmware.
The
sudo rfkill --list
command just returnsrfkill: unrecognized option
. Appending sudo to the beginning of the other command I listed (the -vq | grep one) didn't work: it returns pcilib: Error reading /sys/bus/PCI/devices/0000:00:08.3/label: Operation not permitted`.I'll check out that site and see if there's anything there that can help. otherwise I might just format the drive and do a clean install, see if maybe that will fix it.