LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 10-20-2018, 02:36 AM   #1
Jubadu
LQ Newbie
 
Registered: Oct 2018
Posts: 3

Rep: Reputation: Disabled
WiFi not working on Thinkpad E480, AC 3165


Just installed DeepIn Linux on my Thinkpad E480. The WiFi seems to be turned on but it cannot find any networks. I believe the network adapter is an AC 3165.

Thanks in advance!
 
Old 10-20-2018, 02:22 PM   #2
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,400
Blog Entries: 28

Rep: Reputation: 6166Reputation: 6166Reputation: 6166Reputation: 6166Reputation: 6166Reputation: 6166Reputation: 6166Reputation: 6166Reputation: 6166Reputation: 6166Reputation: 6166
What specifically do you mean by the "WiFi seems to be turned on"?

More and more detailed information is needed. Some of the diagnostics in this post should help: https://www.linuxquestions.org/quest...ux-4175434970/
 
Old 10-20-2018, 02:50 PM   #3
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
# rfkill list

It might be blocked in software.

# modinfo iwlwifi

It might have multiple antennae and is selecting the wrong one by default. Or other defaults that do not favor your chipset.

Otherwise:

$ ip link show
$ ip link set wlo1 up
$ iw dev wlo1 scan

May or may not be relevant. But a place to start.
 
Old 10-21-2018, 06:18 AM   #4
Jubadu
LQ Newbie
 
Registered: Oct 2018
Posts: 3

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Shadow_7 View Post
# rfkill list

It might be blocked in software.

# modinfo iwlwifi

It might have multiple antennae and is selecting the wrong one by default. Or other defaults that do not favor your chipset.

Otherwise:

$ ip link show
$ ip link set wlo1 up
$ iw dev wlo1 scan

May or may not be relevant. But a place to start.
rfkill
command not found
modinfo
command not found
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp3s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000
link/ether 8c:16:45:bd:15:a3 brd ff:ff:ff:ff:ff:ff


ip link set wlo1 up
Cannot find device "wlo1"

iw dev wlo1 scan
command not found

Seems like it does not recognise the WiFi adapter. But as I said, it seems to be turned on, meaning that the "switch" in the settings is on as if it worked but just couldnīt finde any networks
 
Old 10-28-2018, 04:15 AM   #5
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
You'll probably need to install rfkill, iw, although not sure why modinfo isn't there, but you will need to be root to run modinfo.

But yeah, your wifi doesn't seem to have an interface for it, so it likely doesn't have a driver. Or a loaded module. Or missing firmware.

# modprobe iwlwifi
# ip link show

Perhaps see if it's listed in lsusb or lspci.

$ lsusb
$ lspci -nnk
$ lsmod

For my debian buster...

# apt-get install usbutils pciutils iw rfkill kmod

Also make sure the firmware is present.

# apt-get install firmware-iwlwifi

Or whatever applies to your distro.

# dmesg | grep -i firmware
 
Old 01-05-2019, 07:49 AM   #6
wildbartty
LQ Newbie
 
Registered: Jan 2019
Distribution: Gentoo
Posts: 1

Rep: Reputation: Disabled
The thinkpad E480 has a rtl8822BE wifi card, which is in the staging drivers, and was added in kernel 4.14.
 
Old 01-05-2019, 02:07 PM   #7
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
the ole' rfkill catch 22 this has got to be the most reconfigured stupidest thing ever invented for Linux to use, RFKILL

you need a program called RFKILL to check RFKILL, and to Modify it if it is blocking anything the lets you get out past your PC in order to install RFKILL so you can check RFKILL to see if it is blocking you from getting outside of your PC so you can install RFKILL to check to see if RFKILL is blocking you from getting outside of your PC so you can install RFKILL to see if RFKILL is blocking you from getting outside of your PC ..... but we all know one has to have a connection to get outside of the PC to install RFKILL to see if RFKILL is blocking you from installing anything ... catch 22

what is worse is most if not all distros do not install the rfkill program in the default installation which they all should. Because lots of times rfkill is the one that is blocking a user from getting outside the PC and need that connection to install RFKILL so they can unblock the connections.

Last edited by BW-userx; 01-05-2019 at 02:11 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
WiFi not working on Thinkpad E480, AC 3165 Jubadu Linux - Laptop and Netbook 1 10-21-2018 11:08 AM
[SOLVED] Wifi not working on Thinkpad X200, Debian Stretch megamo Linux - Hardware 5 09-22-2018 04:53 AM
RTL8822BE wireless adapter on Lenovo Thinkpad E480 only works with SystemD init Abishtu Linux - Wireless Networking 4 09-17-2018 03:05 AM
Wifi option is there but no wifi scanning or wifi not working Aakash447 Linux - Newbie 3 06-28-2018 11:48 PM
Getting WIFI working on a Thinkpad R31 laptop Comptalk Linux - Laptop and Netbook 1 08-17-2005 07:21 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 06:16 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration