RTL8821CE 驱动程序故障

RTL8821CE 驱动程序故障

我刚买了一台联想 ideapad S130 141GM,安装了 Ubuntu Budgie 19.04。wifi 芯片是 rtl8821ce,所以我必须使用以下命令安装驱动程序:

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

重启后,它起作用了,我可以看到许多网络,但不是我的盒子之后,我使用了一个带有 RTL8188EUS 的 wifi 适配器,它开箱即用,并且看到了相同的网络还有我的盒子

我的盒子在 6 频道上工作,所以这不是国家频道分配的问题。我的盒子的信号水平当然比所有其他网络的信号高得多,而且 6 频道上没有其他网络(我也尝试过其他频道,但没有成功)。我的提供商是“免费”。

有人解决了同样的问题吗?可以提示一下去哪里查找吗(我很高兴能够再次使用 wifi 加密狗占用的 USB 连接器)?

提前致谢。

答案1

来自评论...

卸载当前的 dkms 驱动程序(https://github.com/tomaspinho/rtl8821ce)...

cd rtl8821ce          # old source folder
sudo ./dkms-remove.sh # uninstall old dkms driver

试试这个...https://github.com/shubham151/rtl8821ce.(git 克隆https://github.com/shubham151/rtl8821ce.git)。不要按照那里的 ReadMe 来了解如何安装它,而是按照您之前执行的相同步骤来安装 dkms。

git clone https://github.com/shubham151/rtl8821ce.git # git clone new driver
cd rtl8821ce             # new source folder
chmod +x dkms-install.sh # make executable
chmod +x dkms-remove.sh  # make executable
sudo ./dkms-install.sh   # install new dkms driver

答案2

对于 ubuntu 20.04,这应该可以解决问题:

apt install rtl8821ce-dkms

相关内容