
目录:
1.问题描述
2.跟已有问题的不同之处
3.解决思路
4.奏效的方法。
5.参考的网站
一 、问题描述。
联想Y7000 安装ubuntu16.04 +win10 双系统。安装完成后,无法启动搜索wifi列表和触摸板失灵,相似问题可见以下网站
联想笔记本Y7000-ubuntu16.4无法开启wifi的解决办法_子艺Buffalo_新浪博客blog.sina.com.cn https://blog.csdn.net/llfjcmx/article/details/81156593blog.csdn.net二、跟已有问题的不同之处:
terminal 中输入sudo rfkill list all 只显示
0: ideapad_wlan: Wireless LAN
Soft blocked: no
Hard blocked: yes
1:ideapad_bluetooth: Bluetooth
Soft blocked: no
Hard blocked: yes

并没有显示
2:phy0: Wireless LAN
Soft blocked: no
Hard blocked:no
tips: Hard blocked 代表了被锁了
三、解决思路:
初步猜测没有安装相应的驱动问题。
解决方案:
1.下载驱动
a.查看wifi 驱动 命令:
sudo lshw -C network
lshw
列出你的硬件信息-C network
筛选输出,只显示网络类。- 在输出中,查找带有
description: Wireless interface
的条目。
我的输出内容是:

*-network description: Wireless interfaceproduct: Wireless-AC 9560[Jefferson Peak]
b.查找相应的驱动,由于种种原来没能成功。
那么,还不如直接更新内核去了,毕竟新版的内核,新版的内核在驱动方面相对完善。
—————————————————————————————————————————————————四、奏效的方法。
更新内核,自己的内核是 Linux 4.4.0-64 generic
a. 查看内核代码:$ uname -r
下面的图片是更新之后的内核

b.更新内核的方法网上有很多,这里只写其中一个最简单的
下面的方法直接更新到 4.15.0-70kernel
Ubuntu 16.04 - Upgrade Kernel
kernel
If you're still running the original 4.4 kernel and want to upgrade to 4.13 then run the following command:
桌面版ubuntu更新内核:
sudo apt-get install --install-recommends linux-generic-hwe-16.04 xserver-xorg-hwe-16.04 -y

服务器版ubuntu更新内核:
sudo apt-get install --install-recommends linux-generic-hwe-16.04 -y
更新完成后reboot ubuntu 即可。
上面的更新方法参考网站:
Ubuntu 16.04 - Upgrade Kernelblog.programster.org五、参考网站:
1.WI-FI doesn't work (Hard Blocked) [duplicate]
WI-FI doesn't work (Hard Blocked)askubuntu.com
2.WiFi is disabled by hardware switch / Hard Block / kernel
3.Ubuntu 16.04 - Upgrade Kernel
Update Linux Kernel on Ubuntu through UKUUvitux.com
4.奏效的方法
Ubuntu 16.04 - Upgrade Kernelblog.programster.org