Ubuntu 16.04 LTS Desktop install Wireless drive
无线网卡:COMFAST CF-WU825N
驱动:rtl8192eu-linux-driver
一、code make install
- github clone or download wifi-linux-driver
- 进入目录
cd xxx
- 配置
./configure
- 编译
make
- 安装
make install
- 卸载
make uninstall
- 重启后就有wifi了
reboot
二、Building and installing using DKMS
- git clone
git clone https://github.com/Mange/rtl8192eu-linux-driver.git cd rtl8192eu-linux-driver dir
- Install DKMS and other required tools
sudo apt-get install git linux-headers-generic build-essential dkms
- Add the driver to DKMS. This will copy the source to a system directory so that it can used to rebuild the module on kernel upgrades.
sudo dkms add .
- Build and install the driver.
sudo dkms install rtl8192eu/1.0
- sudo reboot重启后wifi设备亮了 ,显示可连接就大功告成
- uninstall || remove
If you wish to uninstall the driver at a later point, use
dkms uninstall rtl8192eu/1.0.
To completely remove the driver from DKMS usedkms remove rtl8192eu/1.0.