联想Z50-70 realtek dirver RTL7823BE wi-fi无法连接

我认为,我的Wi-Fi驱动程序在使用Ubuntu 14.04操作系统的Lenovo Z50-70上无法正常运行。

连接到无线网络后,它可以工作很短的时间,然后,虽然它显示稳定的连接,但我无法访问任何网站。

我在Windows 8.1上尝试过Wi-Fi,它运行得很好。

任何想法的家伙?

经过大量研究并面临内核恐慌问题,我能够解决这个问题。 这是我修复它的方法。

注意这可用于安装任何realtek无线驱动程序

lspci | grep Network

注意 :如果在此过程中出现内核崩溃问题。 DONT PANIC解决方案就在最后。 你不需要重新安装Ubuntu。

  1. 升级linux内核

  2. 安装如下

     sudo apt-get install git build-essential linux-headers-$(uname -r) linux-headers-generic git clone https://github.com/lwfinger/rtlwifi_new cd rtlwifi_new make clean make sudo make install sudo depmod -a sudo modprobe rtl8723be echo "options rtl8723be fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf 
  3. 重启

资料来源:

内核恐慌如果遇到系统不重启的内核崩溃问题

  1. 重新启动进入恢复模式
  2. 使用root登录
  3. 以读写模式挂载文件系统

     mount -o rw,remount / 
  4. 将刚刚添加的驱动程序添加到黑名单中

     vim /etc/modprobe/blacklist.conf 

    添加blacklist rtl8723be

  5. 重启