解决y7000笔记本ubuntu下wifi无法连接问题

 

查看wifi与蓝牙硬件开关,发现ideapad的硬件模块都是关闭的

rfkill list all

 

打开终端

输入

sudo gedit /etc/rc.local

写入以下内容 进行保存

复制代码
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

echo "123" |sudo modprobe -r ideapad_laptop
exit 0
复制代码

 

为了保证重启生效,需要给予权限 终端输入

sudo chmod 777 /etc/rc.local

然后输入

reboot

重启后发现wifi正常使用,但是信号远比WIN要差切容易断 

解决方案

sudo apt-get install git build-essential linux-headers
git clone https://github.com/lwfinger/rtlwifi_new.git
cd rtlwifi_new
make
sudo make install
reboot

 

posted @   clemente  阅读(3646)  评论(1编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 周边上新:园子的第一款马克杯温暖上架
点击右上角即可分享
微信分享提示