Ссылки:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
https://habr.com/ru/sandbox/131693/ полезная статья по драйверу https://github.com/morrownr/8821cu-20210916 https://github.com/fastoe/RTL8811CU_for_Raspbian https://github.com/brektrou/rtl8821CU https://github.com/gglluukk/rtl8188eus https://github.com/Mange/rtl8192eu-linux-driver https://github.com/aircrack-ng/rtl8812au https://github.com/Mange/rtl8192eu-linux-driver https://github.com/clnhub/rtl8192eu-linux rpi https://ru.wikipedia.org/wiki/Raspberry_Pi https://forums.raspberrypi.com/viewtopic.php?t=344895 https://github.com/liushm/rtl8821CU https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2024-03-15/2024-03-15-raspios-bookworm-arm64-lite.img.xz https://github.com/FancyPixel/rtl8821cu https://github.com/morrownr/8821cu-20210916 AP https://habr.com/ru/articles/761852/ https://raspap.com/ https://docs.raspap.com/ |
Для raspbery pi получаем самые последние сорцы ядра:
1 2 3 4 |
apt install -y bc git dkms build-essential raspberrypi-kernel-headers wget https://raw.githubusercontent.com/RPi-Distro/rpi-source/master/rpi-source -O /usr/local/bin/rpi-source chmod +x /usr/local/bin/rpi-source && /usr/local/bin/rpi-source -q --tag-update rpi-source |
Сборка драйвера:
1 2 3 4 5 6 7 8 9 10 11 |
!!! kernel linux < 6 !!! прочтите инструкции в файле README.md !!! cat README.md Ставим необходимы пакеты: apt-get install dkms dkms status git clone https://github.com/brektrou/rtl8821CU.git cd rtl8821CU Выполняем установку ./dkms-install.sh dkms status |
Удаление драйвера установленного через DKMS
1 2 3 4 5 6 7 |
Проверяем что там у нас установлено используем команду "dkms status ": dkms status rtl8821cu, 5.12.0.4: added rtl8821CU, 5.4.1: added Удаляем ( rtl8821cu/5.12.0.4): dkms uninstall rtl8821cu/5.12.0.4 dkms remove rtl8821cu/5.12.0.4 --all |
8821cu-20210916 RPI 3B+
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
https://github.com/morrownr/8821cu-20210916?tab=readme-ov-file Ставим пакеты для сборки: apt install -y bc git dkms build-essential raspberrypi-kernel-headers wget https://raw.githubusercontent.com/RPi-Distro/rpi-source/master/rpi-source -O /usr/local/bin/rpi-source chmod +x /usr/local/bin/rpi-source && /usr/local/bin/rpi-source -q --tag-update Качаем драйверы: cd /opt git clone https://github.com/morrownr/8821cu-20210916 Устанавливаем драйвер !!! В Makefile уже установлена авто определения драйвера. cd 8821cu-20210916/ make -j4 ./dkms-make.sh ./install-driver.sh |
AP
1 2 3 4 5 6 7 8 9 10 11 |
https://habr.com/ru/articles/761852/ https://raspap.com/ sudo apt-get update sudo apt-get full-upgrade sudo reboot curl -sL https://install.raspap.com | bash Username: admin Password: secret |