Author Topic: Getting WiFi Going on New Laptop - SOLVED  (Read 2113 times)

Getting WiFi Going on New Laptop - SOLVED
« on: 03 March, 2023, 10:30:28 am »
Having got Debian 11 going on this refurbished Dell latitude 7390, the ethernet connection is all OK, but I can't get the wifi going.

The command lspci yields:

Code: [Select]
Network controller: Intel Corporation Wireless 8265 / 8275

but the command ip link show tells me it's only seeing the loopback and the ethernet connection:

Code: [Select]
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp0s31f6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
    link/ether e4:b9:7a:00:36:f7 brd ff:ff:ff:ff:ff:ff

What do I do next?

Re: Getting WiFi Going on New Laptop
« Reply #1 on: 03 March, 2023, 12:27:14 pm »
Slide the wifi switch to "on"?
We are making a New World (Paul Nash, 1918)

Re: Getting WiFi Going on New Laptop
« Reply #2 on: 03 March, 2023, 12:33:05 pm »
what does "iwconfig" output ?
I think you'll find it's a bit more complicated than that.

Re: Getting WiFi Going on New Laptop
« Reply #3 on: 03 March, 2023, 12:48:33 pm »
Oh I just checked and Debian 11 doesnt install non free WiFi card drivers by default.

Code: [Select]
sudo apt install firmware-iwlwifi
Should install the Intel ones so long as you enable the non free repository.
I think you'll find it's a bit more complicated than that.

Re: Getting WiFi Going on New Laptop
« Reply #4 on: 03 March, 2023, 01:56:34 pm »
Slide the wifi switch to "on"?

There is no 'on' switch to slide.

Kim

  • Timelord
    • Fediverse
Re: Getting WiFi Going on New Laptop
« Reply #5 on: 03 March, 2023, 01:58:51 pm »
Slide the wifi switch to "on"?

There is no 'on' switch to slide.

Always worth checking though, given the sheer number of person-hours that have been cumulatively wasted banging heads against mysterious 'driver problems' when it turns out that a largely forgotten switch had been inadvertently frobbed.  (DAHIKT)

Re: Getting WiFi Going on New Laptop
« Reply #6 on: 03 March, 2023, 01:59:26 pm »
Oh I just checked and Debian 11 doesnt install non free WiFi card drivers by default.

Code: [Select]
sudo apt install firmware-iwlwifi
Should install the Intel ones so long as you enable the non free repository.

Tried iwconfig first - Command Not Found

Successfully made changes to sources.list and installed firmware.

iwconfig still Command Not Found

Re: Getting WiFi Going on New Laptop
« Reply #7 on: 03 March, 2023, 02:01:13 pm »
Restart obviously done too.

Kim

  • Timelord
    • Fediverse
Re: Getting WiFi Going on New Laptop
« Reply #8 on: 03 March, 2023, 02:02:57 pm »
Tried iwconfig first - Command Not Found

Are you running it as root (sudo iwconfig), and is the wireless-tools package installed?

Re: Getting WiFi Going on New Laptop
« Reply #9 on: 03 March, 2023, 02:05:14 pm »
Tried both as root and user.

I'll have a look at installing wireless-tools.

Thanks for the help.

[Edit] Confirm wireless-tools installed and latest version.

Re: Getting WiFi Going on New Laptop
« Reply #10 on: 03 March, 2023, 02:29:34 pm »
If you have wpasupplicant and wireless-tools installed then

ip -a

Should list the wireless interface.
I think you'll find it's a bit more complicated than that.

Re: Getting WiFi Going on New Laptop
« Reply #11 on: 03 March, 2023, 02:47:36 pm »
If you have wpasupplicant and wireless-tools installed then

ip -a

Should list the wireless interface.

Yep. ip -a link gives:

Code: [Select]
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp0s31f6: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000
    link/ether e4:b9:7a:00:36:f7 brd ff:ff:ff:ff:ff:ff
3: wlp2s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DORMANT group default qlen 1000
    link/ether 04:d3:b0:27:ae:5c brd ff:ff:ff:ff:ff:ff

and wifi now working!  (Output above was before it was activated).

Many thanks for the help everyone! :thumbsup: :thumbsup: