Realtek nic linux driver

Realtek nic linux driver

RTL8821CU_RTL8811CU_driver version v5.8.1

RTL8811CU and RTL8821CU driver

The Realtek RTL8811CU-CG is a highly integrated single-chip that supports 1-stream 802.11ac solutions with Multi-user MIMO (Multiple-Input, Multiple-Output) and Wireless LAN (WLAN) USB interface controller. It combines a WLAN MAC, a 1T1R capable WLAN baseband, and RF in a single chip. The RTL8811CU-CG provides an outstanding solution for a high-performance integrated wireless device.:

  • USB high speed interface
  • 802.11ac/abgn, 802.11ac
  • 2.4 GHz Support
  • 5.8 GHz Support
  • Supports concurrent mode (operates as two virtual WLAN interfaces)
  • MIMO config — 1×1
  • MU-MIMO
  • AC wave2
  • 256 QAM
  • IEEE 802.11 b/g/n/ac WiFi compliant
  • 802.1x, WEP, WPA TKIP and WPA2 AES/Mixed mode for PSK and TLS (Radius)
  • WPA3 SAE (Personal)
  • WPS — PIN and PBC Methods
  • IEEE 802.11b/g/n/ac Client mode
    • Support wireless security for WEP, WPA TKIP and WPA2 AES PSK
    • Support site survey scan and manual connect
    • Support WPA/WPA2 TLS client
    • Support power saving mode
  • Soft AP mode
  • WiFi-Direct
  • Miracast
  • MU-MIMO
  • BT-COEXist
  • Mesh
  • Wake on WLAN

5.x)
Android 1.6

Linux driver support

The Linux driver appears as 8821cu.ko. Check if the USB sub-system recognizes the device.

If 8821cu is present, everything is good to go!

Building the driver

If the driver is not present, it can be built using the included driver sources.

  • Driver version : rtl8821CU_WiFi_linux_v5.8.1_34171.20190628_COEX20190509-4141
  • Driver changelog.pdf
  • Build tools — Install build tools, if needed (see below)

Option 1 — Direct build

Following customizations have been made to the default Makefile(see installation document for details):

  • Choose x86 target
  • Concurrent mode enabled (To disable, comment out EXTRA_CFLAGS += -DCONFIG_CONCURRENT_MODE )
  • Mesh point enabled (To disable, comment out EXTRA_CFLAGS += -DCONFIG_RTW_MESH )
  • Monitor mode enabled (To disable, set CONFIG_WIFI_MONITOR = n )
  • Log Level = 3 (default is 4, set CONFIG_RTW_LOG_LEVEL = 4 )

Option 2 — DKMS build (verified on Debian 10 LTS with Kernel version 4.19)

DKMS is a system which will automatically recompile and install a kernel module when a new kernel gets installed or updated. To make use of DKMS, install the dkms package and follow the steps listed below:

About

Linux Driver for RTL8821CU, RTL8811CU USB Wi-Fi NIC

Источник

Realtek nic linux driver

RTL8822x Firmware for GNU/Linux

The files in this repository are taken from Linux Mint 19.3 and will allow a Realtek RTL8822 b or c card to work on other distributions.

If you have trust issues, you can always boot with Mint 19.3 and take the files from there to use.

Читайте также:  Не могу подключить bluetooth клавиатуру windows 10

Log in with your favorite distribution, preferably with a new Kernel, as this has only been tested with 5.4+ Unload non-working modules from the Kernel, with:

You can run lsmod to see if they are named somehow differently in your OS, in case you do not run Debian.

Copy the files from this repo to your system, change the kernel path as needed! Load the modules with modprobe rtw88 and the WiFi should work.

It is unclear to me whether the /usr files are needed or if everything will work with just the files under /lib . Feel free to open an issue about this.

Did you rename the paths to work with with your current Kernel?

Usage on Debian Installer

Either on the graphical, text or live installer, open a terminal and do the above procedure before the installer checks for WiFi cards. The resulting installation will work out of the box and you do not need to copy the files again.

  • Huawei Matebook D14 (2020) with AMD 3500U. (Probaly same as D15)

The following issues are not related to the network card, but to the AMD CPU/GPU. Since these two are commonly found together, I document the fixes here.

If you have issues with the installer not starting use a newer Kernel. The ISO files listed above are fine as are the STABLE ones from Debian.

If you have glitches with your screen (artifacts) disable compositing.

About

Linux Drivers for Realtek RTL8822x WiFicards, taken from Linux Mint 19.3

Источник

Realtek nic linux driver

Realtek R8101 linux driver source

This is the official linux driver source for Realtek RTL8101E/RTL8102E/RTL8103E/RTL8105E/RTL8106E/RTL8107E FE 100M NICs, obtained from here. Tested on Ubuntu 20.04 in my Dell Inspiron 1440 laptop, ethernet works flawlessly with a speed of 95 Mbps upload and download.

Since Ubuntu 18 these NICs are being used with the default r8169 driver (which is for the R8169 gigabit ethernet controller only), which causes terrible download and upload speeds. Installing the official driver for 810xE series fixes it.

Driver version: 1.035.03
Release date: 26/05/2020

NOTE: I upgraded to another laptop few months ago so I’m no longer maintaining this repo.

How to install this driver?

  • First of all, clone this repo to some folder and cd into that folder
  • Install basic dependencies for compiling the driver: sudo apt install build-essential linux-headers-$(uname -r)
  • Unload the existing r8169 driver: sudo modprobe -r r8169
  • Block the r8169 driver in modprobe: sudo sh -c ‘echo blacklist r8169 >> /etc/modprobe.d/blacklist.conf’
  • Run the automatic build & install script: sudo ./autorun.sh . Ignore errors if any.
  • Check if the driver is loaded: lsmod | grep r8101 , it will return a single line like r8101 204800 0
  • If the driver is not loaded, then run sudo modprobe r8101 .
  • Now try connecting. If you don’t see the connection then you might need a reboot.
  • Enjoy ethernet speeds upto 100Mbps!
Читайте также:  Системные звуки windows 10 где находится

Some additional info

/r8101, the link status can be forced to one of the 4 modes as following command. # insmod ./src/r8101.ko speed=SPEED_MODE duplex=DUPLEX_MODE autoneg=NWAY_OPTION where SPEED_MODE = 100 for 100Mbps = 10 for 10Mbps DUPLEX_MODE = 0 for half-duplex = 1 for full-duplex NWAY_OPTION = 0 for auto-negotiation off (true force) = 1 for auto-negotiation on (nway force) For example: # insmod ./src/r8101.ko speed=100 duplex=0 autoneg=1 will force PHY to operate in 100Mpbs Half-duplex(nway force). 2. Force the link status by using ethtool. a. Insert the driver first. b. Make sure that ethtool exists in /sbin. c. Force the link status as the following command. # ethtool -s ethX speed SPEED_MODE duplex DUPLEX_MODE autoneg NWAY_OPTION where SPEED_MODE = 100 for 100Mbps = 10 for 10Mbps DUPLEX_MODE = half for half-duplex = full for full-duplex NWAY_OPTION = off for auto-negotiation off (true force) = on for auto-negotiation on (nway force) For example: # ethtool -s eth0 speed 100 duplex full autoneg on will force PHY to operate in 100Mpbs Full-duplex(nway force). RTL8101E, RTL8102E and RTL8103E do not support Jumbo Frame. «>

About

Official linux driver source for Realtek R810xE 100M ethernet controllers

Источник

Проблемы с WIFI адаптерами RTL8821CE в Linux

Добрый день всем, кто оказался на данном сайте. В последнее время можно сталкнуться с тем, что нет драйвера на WIFI адаптер RTL8821CE. К примеру, я сталкнулся с этой проблемой когда приобрел новый ноутбук. Хотя например в Ubuntu 19.10 этот драйвер есть в репозиториях. Но, например в Debian и MX Linux его нет. Решается это довольно просто. Установкой его с gihub. И так, приступ. Для начала установим git:

Теперь можно приступать к скачиванию исходного пакета с gihub:

После чего переходим в папку с нашим исходником и приступаем к установке. Для начала скомпилируем исходник командой “make” и потом установим при помощи команды “install”

После успешной установки, нужно перезагрузить систему. После чего WIFI устройство обнаружиться системой и будет работать. А на этом сегоня все. Надеюсь данная статья будет вам полезна.

Вам также может понравиться

Как поднять ftp сервер

Телеграм боты для поиска информации – пробив

Настраиваем Tor на анонимность в сети

18 комментариев к « Проблемы с WIFI адаптерами RTL8821CE в Linux »

не сработало, у меня elementary os

введи команду inxi -F и скинь мне на мыло скрин, или на форуме можно посмотреть решение проблемы может кто и сталкивался http://linuxhome.spiritfamily.ru/forums/

У меня elementary os и всё сработало ноутбук HP 255 G7

HP, Elementary – нет wifi, Linux Mint – тоже нет. Просмотрел, перечитал кучу информации -ничего. Случайно наткнулся на ваш сайт – 10 минут и проблема решена. Благодарю Вас за краткость и доступность.

Читайте также:  Rpc служба windows 10 что это

Спасибо, все понятно.

Сработало на Ubuntu 20.04.1! Спасибо!

как скачать, если нет интернета?

Можно подключиться по витой паре – по проводу, скачать и установить. А вообще, щас в ядро Linux уже добавили данный драйвер, его только в настройках активировать и все работает

Я подключил телефон через USB кабель.

автор, спасибо. супер статья и , главное, что без ошибок. множество статей на эту тему в сети, но ,видимо, авторы не сильно понимали, о чем пишут.. поэтому в статьях ошибки. у тебя все в порядке. спасибо. помогло решить задачу и не скатиться к использованию винды )))

Блаеодарю! думал уже на другую OS переходить
Все сработало на отлично, я снова с WIFI
ядро 5.10.6-desktop-1.mga7
ноут ASUS 2019 г.
карточка RTL8821ce
OS Mageia 7

Спасибо автору. Всё чётко и разумно. Для первичного подключения к сети использовал телефон через USB кабель.

Супер! Все получилось. Спасибо огромное.

Чуть было не забыл! Первым шагом отключаем Secure Boot в Биосе!

Источник

Как установить драйвер Wi-Fi для Realtek RTL8821CE в Ubuntu 18.04?

Я пытаюсь установить драйверы для моего Wi-Fi на моем рабочем столе HP All-in-one. Мне сказали показать вывод команды «sudo lshw -C network», вот она:

Вывод из «lspci -nnk | grep -A2 0280»:

2 ответа

(Этот вопрос является дубликатом Wi-Fi, который не работает на Lenovo ThinkPad E570 (Realtek RTL8821CE), но я был рад, что в итоге мы нашли решение, поэтому напишу, что сработало для Haz.)

Насколько я могу судить, на момент написания этой статьи в официальных репозиториях Ubuntu еще не было Wifi Driver для Realtek RTL8821CE.

На github есть репозиторий с драйвером RTL8821CE, предназначенный для ядер 4.14 и выше и специально для Arch Linux, без поддержки других дистрибутивов Linux: https://github.com/tomaspinho/rtl8821ce

(Незначительное замечание: по состоянию на февраль 2019 года tomaspinho, к сожалению, больше не может поддерживать драйвер, поскольку у него больше нет доступа к компьютеру с этим чипсетом, и поэтому может потребоваться новый сопровождающий, но драйвер по-прежнему работает с Ubuntu 18.04 по состоянию на то время.)

Однако, как сообщается, он прекрасно работает с Ubuntu 18.04.

Решение взято непосредственно из поста № 4 Praseodym: https://ubuntuforums.org/showthread.php?t=2398917 и установит несколько пакетов для сборки модуля драйвера wifi (git, dkms, build-essential & linux). -headers) и клонировать репозиторий git из tomaspinho.

DKMS используется потому, что это «система, которая автоматически перекомпилирует и устанавливает модуль ядра при установке или обновлении нового ядра».

Откройте терминал и введите следующие строки (Вы можете вырезать и вставить, если хотите):

После того, как это успешно завершено, вы должны перезагрузиться и обнаружить, что ваш Wi-Fi работает.

Вы также хотите убедиться, что SecureBoot отключен в настройках BIOS, иначе он не позволит вам загрузить неподписанный модуль самодостаточного ядра.

Источник

Оцените статью