未找到 wifi 适配器,Ubuntu 22.04.1 LTS Dell Latiude 配备英特尔无线适配器

未找到 wifi 适配器,Ubuntu 22.04.1 LTS Dell Latiude 配备英特尔无线适配器

我最近在我的 Dell Latitude 7240 上安装了 Ubuntu 20.04.1 LTS。使用几天后(以及一些软件更新)无线网络不再工作。我收到“未找到 Wi-Fi 适配器”消息。

内核版本是Linux 5.15.0-46-generic x86_64

sudo lshw -C network得到

  *-network DISABLED
       description: Wireless interface
       product: Wireless 7260
       vendor: Intel Corporation
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: wlp2s0
       version: 73
       serial: 0c:8b:fd:27:8f:fd
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=iwlwifi driverversion=5.15.0-46-generic firmware=17.3216344376.0 7260-17.ucode latency=0 link=no multicast=yes wireless=IEEE 802.11
       resources: irq:50 memory:f7d00000-f7d01fff

sudo dmesg | grep iwl我得到

[    3.611949] iwlwifi 0000:02:00.0: loaded firmware version 17.3216344376.0 7260-17.ucode op_mode iwlmvm
[    3.851701] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
[    3.875699] iwlwifi 0000:02:00.0: base HW address: 0c:8b:fd:27:8f:fd
[    4.140485] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    4.563907] iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0

我尝试了其他几种方法来解决同一问题,但均无效。(或者,至少我无法...)

非常感谢您的帮助!

更新:throwing rfkill我得到的列表:

2: dell-wifi: Wireless LAN
  Soft blocked: no
  Hard blocked: no
3: dell-bluetooth: Bluetooth
  Soft blocked: yes
  Hard blocked: no
4: phy0: Wireless LAN
  Soft blocked: no
  Hard blocked: no
5: nfc0: NFC
  Soft blocked: no
  Hard blocked: no

输出以数字 2 开始。(不知道是否正确)。

尝试进入sudo ifconfig wlp2s0 up但什么也没发生。

答案1

您的文件/etc/network/interfaces(如粘贴中所示)表明,最不推荐使用的 ifupdown 机制将控制您的无线接口。事实上,您期望网络管理器进行控制。也就是说,您希望单击 NM 图标,查看您的网络并进行连接。

请使用任意文本编辑器将文件恢复为默认设置。然后,重新启动。一切就绪。

相关内容