rtl8821ce ドライバをインストールできません

rtl8821ce ドライバをインストールできません

私のLinux MintノートブックにRtl8821ceドライバをインストールしようとしました。これまでに従った手順はわかりますが、実行しようとすると、次sudo makemakeエラーメッセージが表示されます。

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ドライバのインストール

ミントまたは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
  • 端末を開く
  • 各行を個別にコピーして貼り付けます。
  • 各プロセスが完了するまでお待ちください。
  • 再起動してモジュールをカーネルにロードすると、Wi-FiとBluetoothが機能します。

私にとって(LinuxMint 19.2;すべて更新されました)これは完全に機能します。

おすすめ記事