我正在尝试安装 Debian 9.80,但是当我被问到要使用哪个包管理器时,我选择了默认选项,但没有互联网连接我就无法继续。我跳过了它,但我找不到一种方法来安装软件包,而不需要使用一百万个依赖项https://www.debian.org/distrib/packages。我的适配器是 BrosTrend AC1200 AC3 Wifi 适配器。我让它在 Ubuntu 上工作https://blog.danielscrivano.com/installing-rtl8812au-on-linux-for-wireless-dual-band-usb-adapters/但我想让它在 Debian 上运行。
答案1
因为安装是在没有互联网连接的情况下完成的,因此 apt
将无法正确配置。
1)编辑你的sources.list
:
sudo nano /etc/apt/sources.list
包含以下几行:
deb http://deb.debian.org/debian stretch main
deb-src http://deb.debian.org/debian stretch main
deb http://deb.debian.org/debian-security/ stretch/updates main
deb-src http://deb.debian.org/debian-security/ stretch/updates main
deb http://deb.debian.org/debian stretch-updates main
deb-src http://deb.debian.org/debian stretch-updates main
然后:
sudo apt update
sudo apt upgrade
sudo reboot
2) 按照以下步骤安装 Realtek 驱动程序博客发布在您的问题中(linux-headers-generic
不适用于 debian,它将被替换linux-headers-$(uname -r)
)
sudo apt-get install linux-headers-$(uname -r) build-essential git git clone https://github.com/scrivy/rtl8812AU_8821AU_linux.git cd rtl8812AU_8821AU_linux make sudo make install sudo modprobe rtl8812au