-1

I have HP Pavilion x360 - 14m-dh0001dx and i recently installed ubuntu 20.04 lts. And my wifi is not showing. Ps my laptop doesn't have a built in ethernet port. Any solutions?

the output of lspci -knn | grep Net -A3; rfkill list

02:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8821CE 802.11ac PCIe Wireless Network Adapter [10ec:c821]
    DeviceName: WLAN
    Subsystem: Hewlett-Packard Company RTL8821CE 802.11ac PCIe Wireless Network Adapter [103c:831a]
0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
Pilot6
  • 92,041

1 Answers1

0

The solution is to install a wireless driver. Connect your laptop to the internet using e.g. a phone by a USB cable, then tun in a terminal:

sudo apt update
sudo apt install git dkms
git clone https://github.com/lwfinger/rtw88.git
sudo dkms add ./rtw88
sudo dkms install rtlwifi-new/0.6

Then reboot and disable Secure Boot in BIOS.

Pilot6
  • 92,041