我已经搜索了该问题的所有答案,但到目前为止没有一个对我有用。
当我运行时:lspci -v | grep Network
我得到这个输出:
03:00.0 Network controller: Intel Corporation Device 2723 (rev 1a)
Subsystem: Bigfoot Networks, Inc. Device 1654
当我跑步时:
lshw -C network
我的输出是:
*-network
description: Ethernet interface
product: Realtek Semiconductor Co., Ltd.
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:02:00.0
logical name: enp2s0
version: 21
serial: b4:2e:99:a4:58:c9
size: 1Gbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=192.168.1.63 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
resources: irq:18 ioport:3000(size=256) memory:58404000-58404fff memory:58400000-58403fff
*-network UNCLAIMED
description: Network controller
product: Intel Corporation
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:03:00.0
version: 1a
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix cap_list
configuration: latency=0
resources: memory:58300000-58303fff
我已尝试过:
sudo apt remove bcmwl-kernel-source && sudo apt install git dkms
git clone -b extended https://github.com/lwfinger/rtlwifi_new
sudo dkms add ./rtlwifi_new
sudo dkms install rtlwifi-new/0.6
然后我重启了系统
这没有用所以我尝试了这个教程: https://www.youtube.com/watch?v=dokG4bCF4GQ&t=331s
然后我尝试:
sudo apt-get install --reinstall bcmwl-kernel-source
并重新启动,但仍然不起作用。
我现在真的不知道还能尝试什么,任何帮助都将不胜感激。
答案1
您有一个 Intel AX200 设备。
它现在已由 Linux 内核原生支持。
为了使其工作,您需要安装正确的内核并更新linux-firmware
。
连接到互联网并在终端中运行:
sudo apt update
sudo apt install linux-generic-hwe-18.04
sudo apt install linux-firmware
重启后 Wi-Fi 就可以正常工作了。