CentOS 7 安装无线网卡驱动方法实例教程



CentOS 7 安装无线网卡驱动方法实例教程。

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. /sbin/lspci | grep Network

显示:

05:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter

2.下载驱动程序

在网上找到对应的驱动,下载

命令:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. git clone http://github.com/lwfinger/rtl8723be

3.编译安装
命令:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. git checkout 604aa9058fb9e5bb1cf571c99989d081f8fc8b9
  2. make
  3. sudo make install
  4. sudo modprobe rtl8723be

4.重启

 


命令:

[plain] view plaincopy在CODE上查看代码片派生到我的代码片

  1. reboot

参考:

 

http://wiki.centos.org/zh/HowTos/Laptops/Wireless/Broadcom#head-37e5a48b460ced40a5a6676720dbfc0fbc452849

http://www.linuxdiyf.com/viewarticle.php?id=415014

 

——————————————————————–更新——————————————————————————-

以上方法安装完成后,无线连接用一会就会断掉,只有重启电脑。无奈只好更新内核,参考:CentOS 7 更新内核至3.16.2

更新完内核重新编译安装驱动最新版。