无法安装rtl8821ce驱动

无法安装rtl8821ce驱动

我一直在尝试为我的 Linux Mint 笔记本电脑安装 Rtl8821ce 驱动程序。到目前为止,我一直遵循的说明是有意义的,但是当我尝试运行sudo make或只是make收到以下错误消息时:

make ARCH=x86_64 CROSS_COMPILE= -C /lib/modules/4.15.0-54-generic/build M=/home/hudson/Downloads/rtl8821ce  modules
make[1]: Entering directory '/usr/src/linux-headers-4.15.0-54-generic'
/home/hudson/Downloads/rtl8821ce/Makefile:2157: home/hudson/Downloads/rtl8821ce/hal/phydm/phydm.mk: No such file or directory
/home/hudson/Downloads/rtl8821ce/Makefile:2166: home/hudson/Downloads/rtl8821ce/rtl8821c.mk: No such file or directory
make[2]: *** No rule to make target 'home/hudson/Downloads/rtl8821ce/rtl8821c.mk'.  Stop.
Makefile:1552: recipe for target '_module_/home/hudson/Downloads/rtl8821ce' failed
make[1]: *** [_module_/home/hudson/Downloads/rtl8821ce] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.15.0-54-generic'
Makefile:2237: recipe for target 'modules' failed
make: *** [modules] Error 2

我正在使用本指南

答案1

安装rtl8821ce驱动

如果你使用的是 mint 或 ubuntu,你可以这样:

sudo apt-get install --reinstall git dkms build-essential linux-headers-$(uname -r)
git clone https://github.com/tomaspinho/rtl8821ce
cd rtl8821ce
chmod +x dkms-install.sh
chmod +x dkms-remove.sh
sudo ./dkms-install.sh
  • 打开终端
  • 分别复制并粘贴每一行,然后按
  • 等到每个进程都完成
  • 重新启动以将模块加载到内核中,wifi 和蓝牙现在应该可以工作

对我来说(LinuxMint 19.2;全部更新)这很完美

答案2

从 Ubuntu 20.04 开始,包管理器包含rtl8821ce-dkms并且可以轻松安装apt install rtl8821ce-dkms

相关内容