Skip to content

Instantly share code, notes, and snippets.

@MichaelBelgium
Created July 5, 2025 10:52
Show Gist options
  • Save MichaelBelgium/3fbfe2321c6e43cba4107c6d8dd3b467 to your computer and use it in GitHub Desktop.
Save MichaelBelgium/3fbfe2321c6e43cba4107c6d8dd3b467 to your computer and use it in GitHub Desktop.
Wireless Intel connections on debian

This is a guide to make newer Intel wifi cards get detected by Debian, to show ip addr show

The clue is to upgrade the kernel and intel firmware.

Import backports

echo "deb http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware" >> /etc/apt/sources.list

apt get update && apt get upgrade

UPGRADE intel wifi firmware & kernel:

apt-get install -t bookworm-backports linux-image-amd64 firmware-iwlwifi

apt-get install network-manager

reboot

At time of writing, the kernel upgraded from 6.1 to 6.12 or something

Connect to wifi

nmcli device wifi list

nmcli device wifi connect "BSSID" password "PASSWORD"

nmcli connection modify "BSSID" connection.autoconnect yes

If you can't ping at this point, disable the ethernet port/interface

ip link set enp1s0 down

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment