1

Picture of Terminal

I freshly installed ubuntu 20.04 on my Lenovo Yoga539 14ARR laptop. The WiFi option doesn't appear either on the top right menu or the settings.

After some web searching I have used the '''sudo lshw -C network''' command and have gotten the results in the picture.

My best understanding is that there is some issue with the drivers, but I'd really appreciate a few thoughts from people that are more savvy than me.

What is the cause here and how do I go about solving it? I will gladly provide any more info you need. Thanks!

Joepie Es
  • 1,570

1 Answers1

1

welcome to Ask Ubuntu.

WiFi

Out of the box, Ubuntu won't see the built in WiFi adapter (which happens to be RealTek RTL8821CE).
BIOS

Go to bios and turn off SecureBoot. It tends to turn it on again after BIOS upgrades.
Blacklist

Popular solution is to blacklist ideapad_laptop kernel module (like mentioned at this Lenovo forum thread https://forums.lenovo.com/t5/Other-Linux-Discussions/Yoga-920-How-to-run-Linux/td-p/3895778), like this:

echo "blacklist ideapad_laptop" >> /etc/modprobe.d/blacklist_ideapad.conf

However it did not enable WiFi for me. (Though I am not certain it was not helpful together with the next point.)

What helped was this:

echo "blacklist 8821ce" >> /etc/modprobe.d/blacklist-ideapad.conf
sudo apt-get install rtl8821ce-dkms



See also this link:https://dev.to/anatolyscherbakov/running-ubuntu-on-lenovo-yoga-530-transformer-laptop-4c7m for more info/behaviour issues.

Hope it solves your problem and if if does please accept the answer by clicking on the V-shaped icon next to the answer.

Joepie Es
  • 1,570