更新后,dell e5440 启用无线选项缺失

更新后,dell e5440 启用无线选项缺失

系统更新后,无线连接完全中断。“启用无线”选项不再可见。

这就是 lshw 所产生的结果。我按照此处的故障排除指南进行操作:https://help.ubuntu.com/community/WifiDocs/WirelessTroubleShootingGuide,但却徒劳无功。

sudo lshw -c network
  *-network               
       description: Ethernet interface
       product: Ethernet Connection I218-LM
       vendor: Intel Corporation
       physical id: 19
       bus info: pci@0000:00:19.0
       logical name: eth0
       version: 04
       serial: ec:f4:bb:13:4e:94
       size: 10Mbit/s
       capacity: 1Gbit/s
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=e1000e driverversion=2.3.2-k duplex=full firmware=0.6-3 ip=10.100.10.57 latency=0 link=yes multicast=yes port=twisted pair speed=10Mbit/s
       resources: irq:60 memory:f7c00000-f7c1ffff memory:f7c3c000-f7c3cfff ioport:f080(size=32)

硬件开关已打开并被检测到。

rfkill list 

0: dell-wifi: Wireless LAN
    Soft blocked: no
    Hard blocked: no
1: dell-bluetooth: Bluetooth
    Soft blocked: no
    Hard blocked: no
4: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no

问候,阿尼尔班

答案1

我假设您有一个 centrino 平台(即 Intel wifi 卡)。
注意:从戴尔网站来看,情况可能并非如此,具体取决于您为型号选择的确切配置。

然后尝试加载英特尔无线驱动程序(模块):

sudo modprobe iwlwifi

现在再次执行命令sudo lshw -c network

您看到现在列出的 WiFi 卡了吗?

如果是,请将模块添加到/etc/modules(您可以这样做:)sudo bash "echo iwlwifi >> /etc/modules,以便在下次重新启动时自动加载模块。

相关内容