We just bought a Lenovo ThinkPad E570 (which is supposed to have the Intel 8265 for wireless). This laptop was bought in part because it is certified to run Ubuntu and as such to me at least it would make sense for things to work out of the box... but no such luck.
First, I installed Ubuntu 17.10 and after installation realised Wi-Fi was not working. I also tried Ubuntu 16.04 from a USB drive since that is the version of Ubuntu it is certified for, but no luck there either.
The wireless chip is not detected by lshw (or even lspci by the looks of it), ip link does not show a wireless interface, and the iwlwifi kernel module is not loaded at boot (I can load this myself using modprobe iwlwifi but this does not make Wi-Fi work). I think it is a combined Wi-Fi/Bluetooth chip, and Bluetooth does appear to work (or at least Bluetooth shows up in Gnome and rfkill list).
modinfo iwlwifi | grep 8265 shows me a file ending in -34 is supposedly loaded but only a file ending in -33 (and some other lower numbers) is present in /lib/firmware, if that helps).
I have also installed the Linux 4.14.9 kernel in an attempt to get things to work, but this did not resolve the issue either.
Further information
root@ThinkPad-E570:~# modinfo iwlwifi | grep 8265
firmware: iwlwifi-8265-34.ucode
root@ThinkPad-E570:~# rfkill list all
0: tpacpi_bluetooth_sw: Bluetooth Soft blocked: no Hard blocked: no
1: hci0: Bluetooth Soft blocked: no Hard blocked: no
root@ThinkPad-E570:~# dmesg | grep iwl
root@ThinkPad-E570:~# lspci -nnk | grep 0280 -A3
05:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. Device [10ec:c821] Subsystem: Lenovo Device [17aa:c024]Update
I just noticed that the laptop does not have an Intel wireless chip at all, but in fact has a Realtek one... which means that the specs presented on the product page of the shop I bought this laptop at were not accurate... Sigh. Same problem stands, however, just with a crappier wireless chip.
69 Answers
This is a follow up to stason's answer who suggests using dkms.
As far as I can tell, at the time of writing this, there is not yet a Wifi Driver for the Realtek RTL8821CE in the official Ubuntu Repositories.
Over on github there is a repository with an RTL8821CE driver aimed at kernels 4.14 and above and specifically for Arch Linux with no support provided for other Linux Distros:
(Minor note: as of February 2019 tomaspinho is sadly no longer able to maintain the driver as he no longer has access to a computer with this chipset, and so a new maintainer may be needed, but the driver still works with Ubuntu 18.04 as at that time.)
It has, however, been reported to work just fine with Ubuntu 18.04.
A temporary internet connection will be required (such as an ethernet cable, USB wifi dongle or connecting your phone with a usb cable and 'tethering' it to use your phone's Wifi)
The solution is taken directly from post #4 by Praseodym (much praise to their wisdom!): and will install a number of packages for building the wifi driver module (git, dkms, build-essential & linux-headers) and clone the rtl8821ce git repository from tomaspinho (much praise also!).
DKMS is used because it's "a system which will automatically recompile and install a kernel module when a new kernel gets installed or updated."
Open up a terminal and type the following lines (You can cut and paste if you prefer):
sudo apt-get install --reinstall git dkms build-essential linux-headers-$(uname -r)
git clone
cd rtl8821ce
chmod +x dkms-install.sh
chmod +x dkms-remove.sh
sudo ./dkms-install.shAfter this is completed successfully, you should reboot and find that your Wifi is working.
You also want to make sure SecureBoot is Disabled in the BIOS settings or it won't let you load the unsigned self-complied kernel module.
5First, I would suggest that these instructions are more likely to work with Ubuntu 17.10. If you are not currently running it now, I suggest that you re-install it.
Click this link to download the driver file:
Unless you have specified otherwise in your browser, downloads go to the directory Downloads. Open a terminal and do:
cd ~/Downloads
unzip rtl8821ce.zip
cd rtl8821ce
nano MakefileScroll down to line 152 and change the line that now reads:
export TopDIR ?= $(srctree)/drivers/net/wireless/rtl8821ceTo now read:
export TopDIR ?= $ ~/Downloads/rtl8821ceProofread carefully, twice, and save (Ctrl+o followed by Enter) and close (Ctrl+x) the text editor.
Now do:
make
sudo make install
sudo modprobe 8821ceYour wireless should now be working.
EDIT: You have compiled the module for your currently running kernel version only. When Update Manager offers a later kernel version, known as linux-image, after the requested reboot, you must recompile:
cd rtl8821ce
make clean
make
sudo make install
sudo modprobe 8821cePlease retain the file and these instructions for that time.
12Ran in the same problem today with ubuntu 20.04.
Reading through carefully I found out that there is a ready made package by Canonical: rtl8821ce-dkms
Installation boils down to:
sudo apt install rtl8821ce-dkms- Reboot
That's it. Nothing else. After reboot everything just works.
2Update 2018-02-27
Please note the suggested driver is for Endless OS and therefore it might break at any point. If any body has an official driver for Ubuntu it will be better.
Original Answer
This is not a new answer, would be better a comment.
So I tried to follow @chili555 answer but I kept getting errors while trying to make the module.
Errors like:
/rtl8821ce/include/osdep_service_linux.h:294:2: error: implicit declaration of function ‘timer_setup’; did you mean ‘ether_setup’?
[-Werror=implicit-function-declaration] timer_setup(ptimer, pfunc, 0); ^~~~~~~~~~~ ether_setupSo I tried downloading a different revision (zip archive direct download link) which by the time of the original answer might be master as well. Then I was able to make the module and install following the steps provided by @chili555
dkms build/install for rtl8821ce can be found here:
When you use that approach you won't need to rebuild the module each time kernel is updated.
I have just built it on Lenovo Idea 720s with kubuntu 18.04.
Also I suggest you edit Makefile to change the log level from 4 (info) to 3 (warnings). Otherwise you will find your /var/log/syslog filling up at a crazy speed with useless info messages from the driver.
So edit Makefile, to change:
CONFIG_RTW_LOG_LEVEL = 4to:
CONFIG_RTW_LOG_LEVEL = 3and then build and install the module as per instructions. If you already installed it, you need to uninstall it (using dkms-remove.sh) and then reinstall it again.
Alternatively you can manually change the log level until next reboot with:
echo 3 > /proc/net/rtl8821ce/log_levelupdate: the maintainer changed the Makefile to reflect this suggestion, so if you make a fresh checkout/download it'll already have the right (quiet) setting.
A solution for the timer error.
I manage to make it work for my lenovo E570 with ubuntu 16.04 and here are my steps: First, I upgrade my kernel version to 4.15.4 using this guide
I believe any kernel version above 4.15.4 should work because I had to upgrade my kernel to 4.15.9 again. Note the driver needs to be reinstalled.
Then, I followed the steps mentioned in @chili555 answers
5credits to praseodym from ubuntuusers.de for this short tutorial using dkms to install the driver because after trying several answered variants, only this worked for me on a fresh installed debian 10 (buster):
sudo apt-get install --reinstall git dkms build-essential linux-headers-$(uname -r)
git clone
cd rtl8821ce
chmod +x dkms-install.sh
chmod +x dkms-remove.sh
sudo ./dkms-install.sh removal works this way:
sudo ./dkms-remove.sh it was also mentioned to eventually disable secure boot, even before os installation. not sure if this makes a difference because i was needing this on a "HP Slimline (290-a0512ng) Desktop PC" which had secure boot disabled by default i checked/noticed after os installation.
This is how I fixed on an IdeaPad s145-15ast. If you would like to still use ubuntu 16.04, first install the Hardware Enablement:
apt-get install linux-generic-hwe-16.04Then add "Jesse Sung" Realtek 8821c dkms for 4.15
add-apt-repository ppa:wenchien/rtl8821c
apt-get update
apt install oem-realtek-8821ce-lp1767920-4.15-dkmsReboot and that's it.
This device requires drivers and firmware. For new Ubuntu kernels 4.19+ rtw88 drivers from Larry Finger's repo will work.
Run to install the driver:
sudo apt update
sudo apt install git dkms
git clone
sudo dkms add ./rtw88
sudo dkms install rtlwifi-new/0.6Run to install firmware:
git clone git://
sudo cp linux-firmware/rtw88/rtw8821c_fw.bin /lib/firmware/rtw88