Deepin20安装REL8192EU无线网卡速率只有可怜的1mb/s
Tofloor
poster avatar
jin202008x
deepin
2020-08-23 10:35
Author
驱动显示的是rtl8xxxu,不能准确定位到REL8192EU。速率只有可怜的1mb/s,而不是在WIN10下面的480mb/s。而且经常掉线。有什么解决办法吗?

Reply Favorite View the author
All Replies
1 / 2
To page
avatar
Ziggy
deepin
2020-08-23 16:27
#1
480mb/s???这个是理论值吧,只是显示的最高支持速率。
https://blog.csdn.net/Ezitai/article/details/51124021
Reply View the author
avatar
zqrk
deepin
2020-08-23 18:01
#2
我和你的问题一样,弄了好几天,我感觉是驱动没驱动起来,在win下,无线网卡的灯是亮的,速度快,在deepin下,网卡灯不亮。网上的linux驱动或许因为版本的问题,所以驱动不起来。最后花了20大米,买了个deepin即插即用的,嗯,一切都变的好起来了。
Reply View the author
avatar
jin202008x
deepin
2020-08-23 18:39
#3
换成rtl8192cu的无线网卡就可以正常识别,速率可以达到150mb/s。看起来是目前驱动无法支持REL8192EU芯片。
Reply View the author
avatar
jin202008x
deepin
2020-08-23 19:28
#4
https://bbs.deepin.org/post/200197
480mb/s???这个是理论值吧,只是显示的最高支持速率。
https://blog.csdn.net/Ezitai/article/details/51124 ...

所以说,目前 Deepin20安装REL8192EU无线网卡,理论上最高支持速率只有1mb/s了。
Reply View the author
avatar
widon1104
deepin
2020-08-23 19:46
#5
Reply View the author
avatar
jin202008x
deepin
2020-08-23 20:01
#6
本帖最后由 jin202008x 于 2020-8-23 12:26 编辑
https://bbs.deepin.org/post/200197
楼主试过这个没有 https://github.com/Mange/rtl8192eu-linux-driver

make install
install -p -m 644 8192eu.ko  /lib/modules/5.3.0-3-amd64/kernel/drivers/net/wireless/
install: 无法创建普通文件'/lib/modules/5.3.0-3-amd64/kernel/drivers/net/wireless/8192eu.ko': 权限不够
make: *** [Makefile:2299:install] 错误 1
出现上述错误。
加个sudo后

$ sudo make install
install -p -m 644 8192eu.ko  /lib/modules/5.3.0-3-amd64/kernel/drivers/net/wireless/
/sbin/depmod -a 5.3.0-3-amd64
重启后完全连不上网了。哈哈
Reply View the author
avatar
dokd156110
deepin
2020-08-23 22:02
#7
我的无线网卡是Ralink RT5390,也是一样1M/S,还用一会儿就连不上网,显示已连接但无法上网。现在只能用usb无线网卡
Reply View the author
avatar
widon1104
deepin
2020-08-23 23:21
#8
https://bbs.deepin.org/post/200197
make install
install -p -m 644 8192eu.ko  /lib/modules/5.3.0-3-amd64/kernel/drivers/net/wireless/
i ...

配置的对不对哦
Reply View the author
avatar
jin202008x
deepin
2020-08-24 09:38
#9
总之试了各种方法,REL8192EU的无线网卡还是不能正常联网。即使连上去也只有1MB/S。莫非只能换网卡?
Reply View the author
avatar
deepinuser17
deepin
2020-08-24 13:20
#10
https://bbs.deepin.org/post/200197
总之试了各种方法,REL8192EU的无线网卡还是不能正常联网。即使连上去也只有1MB/S。莫非只能换网卡? ...

你是否完全按照Github里的安装步骤进行?

全部步骤是:
  1. sudo apt-get install git linux-headers gcc make dkms
  2. git clone https://github.com/Mange/rtl8192eu-linux-driver
  3. cd rtl8192eu-linux-driver
  4. sudo dkms add .
  5. sudo dkms install rtl8192eu/1.0
  6. echo "blacklist rtl8xxxu" | sudo tee /etc/modprobe.d/rtl8xxxu.conf
  7. echo "8192eu" | sudo tee -a /etc/modules
  8. echo "options 8192eu rtw_power_mgnt=0 rtw_enusbss=0" | sudo tee /etc/modprobe.d/8192eu.conf
  9. sudo update-grub; sudo update-initramfs -u
  10. sudo shutdown -r now
Copy the Code
Reply View the author
avatar
观摩
deepin
2020-08-24 16:45
#11
我很庆幸,我的外置无线网卡TPLink-WDN5200,在15.xx时代一直都无法工作;但是升级到v20之后,内核5.3能完美驱动这个无线网卡,用5G WiFi的感觉就是比2.4G爽。
Reply View the author
avatar
china9494520
deepin
2020-08-24 17:26
#12
https://bbs.deepin.org/post/189158
你升级下核心试试,看看能不能驱动
Reply View the author
Comments
jin202008x
2020-08-24 19:59
为了一个无线网卡换内核,风险有点大啊。
avatar
reasonss
deepin
2020-08-24 19:58
#13
我之前也折腾了一天,查了资料,这个是使用了5.3内核导致的问题,后面调整了一些参数,网卡不掉线了,虽然还是显示1m\s,不影响日常使用。

cat /etc/modprobe.d/iwlwifi.conf                                       
options iwlwifi 11n_disable=8 bt_coex_active=0 power_save=0 swcrypto=0 lar_disable=1
Reply View the author
avatar
jin202008x
deepin
2020-08-24 20:38
#14
https://bbs.deepin.org/post/200197
我之前也折腾了一天,查了资料,这个是使用了5.3内核导致的问题,后面调整了一些参数,网卡不掉线了,虽然 ...

貌似下载速度只有几十K。我现在是直接插网线。
Reply View the author
avatar
叶落随风
deepin
2020-08-24 20:50
#15
https://bbs.deepin.org/post/200197
我很庆幸,我的外置无线网卡TPLink-WDN5200,在15.xx时代一直都无法工作;但是升级到v20之后,内核5.3能完 ...

我也有这个网卡,15.11下还是能用的,没5G WiFi,没啥感觉
Reply View the author
avatar
china9494520
deepin
2020-08-24 23:42
#16
https://bbs.deepin.org/post/200197
https://bbs.deepin.org/post/189158#
你升级下核心试试,看看能不能驱动 ...

我已经升级过了,目前使用正常,没有发现问题。
升级过程非常简单
Reply View the author
avatar
jin202008x
deepin
2020-08-27 00:29
#17
https://bbs.deepin.org/post/200197
你是否完全按照Github里的安装步骤进行?

全部步骤是:

现在好用了。
$ echo "blacklist rtl8xxxu" | sudo tee /etc/modprobe.d/rtl8xxxu.conf
这个是重点,屏蔽RTL8XXXU驱动。不然装了也默认RTL8XXXU。
Reply View the author
avatar
bbyzjs
deepin
2020-08-29 04:24
#18
我下了几个REL8192EU驱动都没成功,看介绍这些驱动最高支持内核4.17,所以也就这样了,要么换卡。
Reply View the author
avatar
jin202008x
deepin
2020-08-29 06:51
#19
https://bbs.deepin.org/post/200197
我下了几个REL8192EU驱动都没成功,看介绍这些驱动最高支持内核4.17,所以也就这样了,要么换卡。 ...

这个驱动可以用,下载地址
https://github.com/Mange/rtl8192eu-linux-driver
安装    sudo make && make install
基于Debian和Ubuntu的发行版有RTL8XXXU驱动程序并运行在kernelspace(内核空间)中。要使用RTL8192EU驱动程序,需要将RTL8XXU列入黑名单。deepin也是这样。
$ echo "blacklist rtl8xxxu" | sudo tee /etc/modprobe.d/rtl8xxxu.conf
然后重启。RTL8192EU就满血复活了。
Reply View the author
Comments
reasonss
2020-09-08 17:30
牛逼~,我的是usb网卡,用来连设备测试的,没细究问题,你的挖掘给我带来了更好的体验
avatar
bbyzjs
deepin
2020-08-29 23:02
#20
/home/zhoujiasui/Desktop/rtl8192eu-linux-driver-master/include/osdep_service_linux.h:254:2: error: implicit declaration of function ‘init_timer’; did you mean ‘_init_timer’? [-Werror=implicit-function-declaration]
  init_timer(ptimer);
  ^~~~~~~~~~
  _init_timer
cc1: some warnings being treated as errors
make[2]: *** [scripts/Makefile.build:281:/home/zhoujiasui/Desktop/rtl8192eu-linux-driver-master/core/rtw_cmd.o] 错误 1
make[1]: *** [Makefile:1756:/home/zhoujiasui/Desktop/rtl8192eu-linux-driver-master] 错误 2
make[1]: 离开目录“/usr/src/linux-headers-5.8.5-050805-generic”
make: *** [Makefile:1335:modules] 错误 2
Reply View the author
1 / 2
To page