Драйвер rtl8192eu для linux ядро
Copy raw contents
rtl8192eu linux drivers
NOTE: This branch is based on Realtek’s driver versioned 4.4.1. master is based on 4.3.1.1 originally.
The official drivers for D-Link DWA-131 Rev E, with patches to keep it working on newer kernels. Also works on Rosewill RNX-N180UBE v2 N300 Wireless Adapter and TP-Link TL-WN821N V6.
NOTE: This is just a «mirror». I have no knowledge about this code or how it works. Expect no support from me or any contributors here. I just think GitHub is a nicer way of keeping track of this than random forum posts and precompiled binaries being sent by email. I don’t want someone else to have to spend 5 days of googling and compiling with random patches until it works.
Source for the official drivers
Official drivers were downloaded from D-Link Australia. D-Link USA and the european countries I checked only lists revision A and B. Australia lists all three.
GitHub will not link to the ftp:// schema. Raw link contents:
In addition, you can find the contents of this version in the initial commit of this repo: 1387cf623d54bc2caec533e72ee18ef3b6a1db29
You can see the applied patches, their sources and/or motivation by looking at the commits. The master branch will mostly be kept clean with a single commit per patch, except for Pull Requests. You can review commit by commit and then record the SHA in order to get a safe reference to use. As long as the SHA stays the same you know that what you get has been reviewed by you.
Note that updates to this README will show up as separate commits. I will not mix changes to this file with changes to the code in case you want to mirror this without the README.
Building and installing using DKMS
This tree supports Dynamic Kernel Module Support (DKMS), a system for generating kernel modules from out-of-tree kernel sources. It can be used to install/uninstall kernel modules, and the module will be automatically rebuilt from source when the kernel is upgraded (for example using your package manager).
Install DKMS and other required tools
- for normal Linux systems
Clone this repository and change your directory to cloned path.
The Makefile is preconfigured to handle most x86/PC versions. However, if you are compiling for something other than an intel x86 architecture, you need to first select the platform.
- for the Raspberry Pi, you need to set the I386 to n and the ARM_RPI to y:
- for arm64 devices (e.g. Orange Pi PC 2):
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.
Build and install the driver.
Distributions based on Debian & Ubuntu have RTL8XXXU driver present & running in kernelspace. To use our RTL8192EU driver, we need to blacklist RTL8XXXU.
Force RTL8192EU Driver to be active from boot.
Newer versions of Ubuntu has weird plugging/replugging issue (Check #94). This includes weird idling issues, To fix this:
Update changes to Grub & initramfs
Reboot system to load new changes from newly generated initramfs.
Check that your kernel has loaded the right module:
You should see the line driver=8192eu
If you wish to uninstall the driver at a later point, use sudo dkms uninstall rtl8192eu/1.0. To completely remove the driver from DKMS use sudo dkms remove rtl8192eu/1.0 —all.
Reference: Intelbras IWA 3001 USB WiFi Adapter
Devices using the 8192eu chip can serve as decent access points, with speeds up to
Using hostapd to manage your AP, set the proper ht-capab field for this device, which is:
Optionally enable wideband, if you don’t have neighbours:
Note that while this will result in a increase in network throughput it may cause clients further away to fail connecting.
It may also make the device work better with repeaters repeating its signal.
HT_CAPAB=[HT40+][RX-STBC1][SHORT-GI-40][SHORT-GI-20][DSSS_CCK-40][MAX-AMSDU-7935] (for channels 1-7), or
HT_CAPAB=[HT40-][RX-STBC1][SHORT-GI-40][SHORT-GI-20][DSSS_CCK-40][MAX-AMSDU-7935] (for channels 5-13)
Changing transmit power
Currently there is no way to change transmit power in the driver with iw or iwconfig tools, as you would with other wireless devices.
The values returned by these tools are purely fictional on this driver. However, you can still manually change the transmit power at compile time by editing the file hal/rl8192e/rtl8192e_phycfg.c and changing the lines below:
- Fork repo
- Do your patch in a topic branch
- Open a pull request on GH, or send it by email to Magnus Bergmark .
- I’ll squash your commits when everything checks out and add it to master .
Copyright and licenses
The original code is copyrighted, but I don’t know by whom. The driver download does not contain license information; please open an issue if you are the copyright holder.
Most C files are licensed under GNU General Public License (GPL), version 2.
Источник
Драйвер rtl8192eu для linux ядро
rtl8192eu linux drivers
NOTE: This branch is based on Realtek’s driver versioned 4.4.1. master is based on 4.3.1.1 originally.
The official drivers for D-Link DWA-131 Rev E, with patches to keep it working on newer kernels. Also works on Rosewill RNX-N180UBE v2 N300 Wireless Adapter and TP-Link TL-WN821N V6.
NOTE: This is just a «mirror». I have no knowledge about this code or how it works. Expect no support from me or any contributors here. I just think GitHub is a nicer way of keeping track of this than random forum posts and precompiled binaries being sent by email. I don’t want someone else to have to spend 5 days of googling and compiling with random patches until it works.
Source for the official drivers
Official drivers were downloaded from D-Link Australia. D-Link USA and the european countries I checked only lists revision A and B. Australia lists all three.
GitHub will not link to the ftp:// schema. Raw link contents:
In addition, you can find the contents of this version in the initial commit of this repo: 1387cf623d54bc2caec533e72ee18ef3b6a1db29
You can see the applied patches, their sources and/or motivation by looking at the commits. The master branch will mostly be kept clean with a single commit per patch, except for Pull Requests. You can review commit by commit and then record the SHA in order to get a safe reference to use. As long as the SHA stays the same you know that what you get has been reviewed by you.
Note that updates to this README will show up as separate commits. I will not mix changes to this file with changes to the code in case you want to mirror this without the README.
Building and installing using DKMS
This tree supports Dynamic Kernel Module Support (DKMS), a system for generating kernel modules from out-of-tree kernel sources. It can be used to install/uninstall kernel modules, and the module will be automatically rebuilt from source when the kernel is upgraded (for example using your package manager).
Install DKMS and other required tools
- for normal Linux systems
Clone this repository and change your directory to cloned path.
The Makefile is preconfigured to handle most x86/PC versions. However, if you are compiling for something other than an intel x86 architecture, you need to first select the platform.
- for the Raspberry Pi, you need to set the I386 to n and the ARM_RPI to y:
- for arm64 devices (e.g. Orange Pi PC 2):
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.
Build and install the driver.
Distributions based on Debian & Ubuntu have RTL8XXXU driver present & running in kernelspace. To use our RTL8192EU driver, we need to blacklist RTL8XXXU.
Force RTL8192EU Driver to be active from boot.
Newer versions of Ubuntu has weird plugging/replugging issue (Check #94). This includes weird idling issues, To fix this:
Update changes to Grub & initramfs
Reboot system to load new changes from newly generated initramfs.
Check that your kernel has loaded the right module:
You should see the line driver=8192eu
If you wish to uninstall the driver at a later point, use sudo dkms uninstall rtl8192eu/1.0. To completely remove the driver from DKMS use sudo dkms remove rtl8192eu/1.0 —all.
Reference: Intelbras IWA 3001 USB WiFi Adapter
Devices using the 8192eu chip can serve as decent access points, with speeds up to
Using hostapd to manage your AP, set the proper ht-capab field for this device, which is:
Optionally enable wideband, if you don’t have neighbours:
Note that while this will result in a increase in network throughput it may cause clients further away to fail connecting.
It may also make the device work better with repeaters repeating its signal.
HT_CAPAB=[HT40+][RX-STBC1][SHORT-GI-40][SHORT-GI-20][DSSS_CCK-40][MAX-AMSDU-7935] (for channels 1-7), or
HT_CAPAB=[HT40-][RX-STBC1][SHORT-GI-40][SHORT-GI-20][DSSS_CCK-40][MAX-AMSDU-7935] (for channels 5-13)
Changing transmit power
Currently there is no way to change transmit power in the driver with iw or iwconfig tools, as you would with other wireless devices.
The values returned by these tools are purely fictional on this driver. However, you can still manually change the transmit power at compile time by editing the file hal/rl8192e/rtl8192e_phycfg.c and changing the lines below:
- Fork repo
- Do your patch in a topic branch
- Open a pull request on GH, or send it by email to Magnus Bergmark .
- I’ll squash your commits when everything checks out and add it to master .
Copyright and licenses
The original code is copyrighted, but I don’t know by whom. The driver download does not contain license information; please open an issue if you are the copyright holder.
Most C files are licensed under GNU General Public License (GPL), version 2.
About
Drivers for the rtl8192eu chipset for wireless adapters (D-Link DWA-131 rev E1 included!)
Источник
Драйвер rtl8192eu для linux ядро
RTL8192eu linux drivers for Raspberry Pi
The official drivers for D-Link DWA-131 Rev E, with patches to keep it working on newer kernels on Raspberry Pi.
Also works on Rosewill RNX-N180UBE v2 N300 Wireless Adapter.
NOTE: This repo was forked from Mange/rtl8192eu-linux-driver.
Kudos to Magnus Bergmark for the great work.
You have two ways to install this driver:
Building and installing using the source code
Install DKMS and other required tools
Install the driver
If you wish to uninstall the driver at a later point, use
Building and installing using DKMS
This tree supports Dynamic Kernel Module Support (DKMS), a system for generating kernel modules from out-of-tree kernel sources. It can be used to install/uninstall kernel modules, and the module will be automatically rebuilt from source when the kernel is upgraded (for example using your package manager).
Install DKMS and other required tools
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.
Build and install the driver.
If you wish to uninstall the driver at a later point, use
To completely remove the driver from DKMS use
- Fork repo
- Do your patch in a topic branch
- Open a pull request on GH, or send it by email to Alessandro Ratti .
- I’ll squash your commits when everything checks out and add it to master .
Copyright and licenses
The original code is copyrighted, but I don’t know by whom. The driver download does not contain license information; please open an issue if you are the copyright holder.
Most C files are licensed under GNU General Public License (GPL), version 2.
About
Raspberry Pi Drivers for the rtl8192eu chipset for wireless adapters (D-Link DWA-131 rev E1 included!)
Источник
Помогите установить драйвера rtl8192eu
Всем привет, помогите установить дрова.. разархивировал драйвера в /usr/src. Пытался запустить автоматическую установку(.install_wifi.sh), выдает: rmmod: ERROR: module 8192eu is not currently loaded ERROR: module rtl8xxxu is not currently loaded sudo: dkms: command not found sudo: dkms: command not found sudo: dkms: command not found modprobe: FATAL: Module 8192eu not found in directory /lib/modules/5.3.0-18-genetic
ни на что не намекает? Нужно установить пакет dkms.
Написано же, что нету команды dkms. Значит, надо установить dkms. Исходные файлы скопировать в ту папку, которая рекомендована в инструкции к драйверу, а то может оказаться, что команда транслции их не найдёт.
Ок, это то понятно, но как его установить? Всеми способами что я нашел у меня не получилось это сделать…
Ок, это то понятно, но как его установить? Всеми способами что я нашел у меня не получилось
Список способов в студию. Очень интересно.
Прочитай файл Readme в папке с исходниками.
Обычно установка из сорцов — это make install (хотя в твоём случае все делает скрипт), но можешь собрать пакет для своей ОС и установить штатным способом через менеджер пакетов.
- Во-первых, следует загрузить и распаковать архив исходного кода драйвера устройства в директорию /usr/src/ — .
После этого нужно создать файл конфигурации с именем dkms.conf в этой же директории.
$ sudo vi /usr/src/ixgbe-4.3.15/dkms.conf Это вот читал пример установки драйверов и там было вот так прописано
Конкретно у меня вот этот скрипт ставит. В системе должен быть dkms,git и инет по кабелю, чтобы скачать репу.
Скрипт не идеальный (ставит все модули сразу), но работает.
У меня ноут без возможности подключить кабель
По вашей же ссылке:
Но, так как инета у вас нет, то нужно будет скачивать пакеты отдельно (*.deb-файлы) и устанавливать их. И если вам не понятно откуда и что скачивать, так и пишите. А не про «Всеми способами что я нашел».
Ну это собственно и есть главная проблема, что не понятно что, откуда, куда и как? То что не так разъяснился, извиняюсь, просто реально пересмотрел уже кучу всего, но все равно ничего не нашел, либо просто я что то делаю не так…
Есть «родные» пакеты, которые входят в репозиторий дистрибутива и при наличии инета ставятся легко и просто. Есть дополнительные модули ядра, которые требуют наличия установленного пакета (фреймворка) dkms. Вы пытаетесь установить модуль, но у вас не установлен dkms. Так как у вас нет Интернета, система не может его скачать и начинаются сложности.
Лучше создайте отдельную тему с названием наподобие «Как без сети установить dkms в xubuntu» и там подробно напишите, что у вас есть. Версия xubuntu, с какого носителя ставили и из какого файла (iso-образа), как вам доступен инет (дуал бут, другой комп в виндой, другой комп с xubuntu).
Источник