0

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
  • 90,100
  • 91
  • 213
  • 324
  • Please [edit] your question and add output of lspci -knn | grep Net -A3; rfkill list terminal command. – Pilot6 Nov 21 '20 at 09:16
  • 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 – Hassan Ali Nov 21 '20 at 09:29
  • https://askubuntu.com/questions/1071299/how-to-install-wi-fi-driver-for-realtek-rtl8821ce-on-ubuntu-18-04 – Bernard Decock Nov 21 '20 at 15:00

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
  • 90,100
  • 91
  • 213
  • 324