Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhangli2946/8a4c53485b60d9669c9d59d2f5685c0d to your computer and use it in GitHub Desktop.
Save zhangli2946/8a4c53485b60d9669c9d59d2f5685c0d to your computer and use it in GitHub Desktop.
网卡驱动安装
第1步,安装Linux-headers
sudo apt-get update
sudo apt-cache search linux-headers-$(uname -r)
sudo apt-get install linux-headers-$(uname -r)
第2步,下载TL-WN725N 2.0的驱动,编译安装
git clone https://github.com/lwfinger/rtl8188eu
cd rtl8188eu
make && make install
如果有git的话用git命令下载,或者直接到这里下载。安装的时候,需要切换到root账户才可以,用sudo会提示权限不够。
第3步,安装wireless-tools。
sudo apt-get install wireless-tools -y
插入无线网卡,或重新插拔一下,就会检测到无线信号了。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment