华硕 U56E 笔记本电脑的无线问题

华硕 U56E 笔记本电脑的无线问题

我有一台华硕 U56E 笔记本电脑,开机一段时间后会断开无线连接并显示错误。我四处寻找解决方案(例如是否有需要安装的驱动程序),但无济于事。这发生在全新安装的 Ubuntu 16.10 上。

错误信息

连接有时会断开并出现此错误。或者在启动我的笔记本电脑时,它根本无法工作,我仍然会收到相同的错误。

希望这也能有所帮助:

00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
00:16.0 Communication controller: Intel Corporation 6 Series/C200 Series Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2 (rev 05)
00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller (rev 05)
00:1c.0 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 1 (rev b5)
00:1c.1 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 2 (rev b5)
00:1c.3 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 4 (rev b5)
00:1c.5 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 6 (rev b5)
00:1d.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 (rev 05)
00:1f.0 ISA bridge: Intel Corporation HM65 Express Chipset Family LPC Controller (rev 05)
00:1f.2 SATA controller: Intel Corporation 6 Series/C200 Series Chipset Family 6 port SATA AHCI Controller (rev 05)
00:1f.3 SMBus: Intel Corporation 6 Series/C200 Series Chipset Family SMBus Controller (rev 05)
02:00.0 Network controller: Intel Corporation Centrino Wireless-N + WiMAX 6150 (rev 67)
03:00.0 USB controller: ASMedia Technology Inc. ASM1042 SuperSpeed USB Host Controller
04:00.0 Ethernet controller: Qualcomm Atheros AR8151 v2.0 Gigabit Ethernet (rev c0)

答案1

添加此内容:

options iwlwifi bt_coex_active=N

/etc/modprobe.d/iwlwifi.conf

使用命令sudo gedit /etc/modprobe.d/iwlwifi.conf

如果此方法不起作用,请尝试运行以下命令:

sudo service network-manager restart

如果这仍然不起作用,请尝试

sudo apt-get purge network-manager

然后

sudo apt-get install network-manager

答案2

我在 Intel 8265 上遇到了严重的 wifi 问题。
解决方案是禁用设备上的电源管理。
也许这对你的情况有帮助。

创建:/etc/network/if-up.d/wifi-powerman-off
启用:chmod +x /etc/network/if-up.d/wifi-powerman-off
注意:替换<<接口名称>>使用您的 wifi 设备名称(例如wlp1s0

wifi-powerman-off

#!/bin/sh
IWCONFIG=/sbin/iwconfig
WLAN_IFACE=<<interface name>>
if [ ! -x $IWCONFIG ]; then
    exit 1
fi
if [ "$IFACE" = $WLAN_IFACE ]; then
    $IWCONFIG $IFACE power off
fi

相关内容