无法打开联想Y520上的wifi

我最近在联想Y520上安装了Ubuntu。 我无法打开wifi。

我听说在Ubuntu 17.04中存在WiFi的一些问题,但它们都与连接有关。

我想知道它是否与BIOS设置有关,因为我必须更改一些以在这台机器上安装Ubuntu。

我没有在键盘上找到任何键或笔记本电脑上的任何按钮来启用/禁用物理上的wifi。

Wifi在同一台机器上的Windows操作系统中运行良好。 所以我认为它没有关闭。

03:00.0 Network controller [0280]: Intel Corporation Wireless 8265 / 8275 [8086:24fd] (rev 78) Subsystem: Intel Corporation Device [8086:1010] Kernel driver in use: iwlwifi Kernel modules: iwlwifi $ rfkill list all 0: ideapad_wlan: Wireless LAN Soft blocked: no Hard blocked: yes 1: ideapad_bluetooth: Bluetooth Soft blocked: yes Hard blocked: yes 3: phy0: Wireless LAN Soft blocked: no Hard blocked: no 4: hci0: Bluetooth Soft blocked: yes Hard blocked: no 

rfkill unblock all后没有任何变化

在终端中运行

 sudo tee /etc/modprobe.d/ideapad.conf <<< "blacklist ideapad_laptop" 

并重新启动。

首先尝试rfkill unblock all 。 如果这不能解决您的问题,请尝试以下方法。 将文件/etc/network/interfaces打开为sudo nano /etc/network/interfaces ,并将以下行附加到/etc/network/interfaces

auto "your wireless interface's name" iface "your wireless interfaces's name" inet auto

在这里用"your wireless interface's name"替换"your wireless interface's name" ,就像在ifconfig -a看到的那样。执行此操作后,你必须使服务network-manager管理/etc/network/interfaces列出的/etc/network/interfaces ,因为network-manager器不管理开箱即用的/etc/network/interfaces文件中列出的/etc/network/interfaces ,即默认情况下。

要打开界面管理,请打开network-manager配置文件,即sudo nano /etc/NetworkManager/NetworkManager.conf 。 并改变线

[ifupdown] managed=false

[ifupdown] managed=true然后通过以下方式重新启动网络管理器服务:

sudo service network-manager restart

界面应该管理和提升。

如果失败,请尝试ifup "your wireless interface's name"