我如何让 wifi 工作?HP Pavilion x360

ItB*_*Mio 5 wireless hp drivers 14.04 realtek-wireless

拥有一台HP Pavilion x360 13-s000。似乎无法在 Ubuntu 14.04 和 15.04 上使用 wifi。做了多次谷歌搜索,但现在我只问。wifi 卡是 Realtek RTL8723BE [10EC:B723]。有人可以帮我解决这个问题吗?

这是lshw在终端运行后说的

*-network DISABLED
            description: Wireless interface
            product: RTL8723BE PCIe Wireless Network Adapter
            vendor: Realtek Semiconductor Co., Ltd.
            physical id: 0
            bus info: pci@0000:08:00.0
            logical name: wlan0
            version: 00
            serial: d8:5d:e2:62:9d:e5
            width: 64 bits
            clock: 33MHz
            capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
            configuration: broadcast=yes driver=rtl8723be driverversion=3.19.0-28-generic firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11bgn
Run Code Online (Sandbox Code Playgroud)

运行rfkill unblock all后仍然显示无线被软阻止。

rfkill list all

0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
1: acer-wireless: Wireless LAN
Soft blocked: yes
Hard blocked: no
2: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
Run Code Online (Sandbox Code Playgroud)

更新 我已按照此处的解决方案进行操作,但问题仍未解决。我的 wifi 从来没有工作过,如果这有帮助的话。

rfkill list all现在的输出是

0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
2: acer-wireless: Wireless LAN
Soft blocked: yes
Hard blocked: no
Run Code Online (Sandbox Code Playgroud)

Wireless LAN 和 acer-wireless 似乎互换了位置。

解决方法:买不同的笔记本电脑......

Phi*_*lOS 2

我不运行 Ubuntu (Fedora),但在 HP PAV x360 上遇到了同样的问题(wifi 未打开),并且也有相同的症状,即:

1: acer-wireless: Wireless LAN
Soft blocked: yes
Run Code Online (Sandbox Code Playgroud)

您需要将 acer_wmi 模块列入黑名单(它永远不应该被加载!)

[root@localhost ]# lsmod | grep acer
Run Code Online (Sandbox Code Playgroud)

编辑(如果不存在则创建)/etc/modprobe.d/blacklist.conf

添加以下行

# Disable acer_wmi as it breaks wifi on this model
blacklist acer_wmi
Run Code Online (Sandbox Code Playgroud)

现在卸载模块(下次启动时它将被列入黑名单,因此您只需卸载一次)

[root@localhost ]# modprobe -r acer_wmi
Run Code Online (Sandbox Code Playgroud)

享受您的工作无线网络!

感谢以下聪明而善良的人们:

http://forums.linuxmint.com/viewtopic.php?f=53&t=204162
https://sites.google.com/site/easylinuxtipsproject/internet#TOC-Turn-the-kernel-module-acer_wmi-off-or -在