Skip to content

Instantly share code, notes, and snippets.

@adammelancon
Last active December 18, 2022 02:41
Show Gist options
  • Save adammelancon/7557d377967ccea4a1a3765bdb83f4f1 to your computer and use it in GitHub Desktop.
Save adammelancon/7557d377967ccea4a1a3765bdb83f4f1 to your computer and use it in GitHub Desktop.
Get the Intel AX210 wifi card working on kali-linux-2022.3-live-everything-amd64 live iso
#!/bin/bash
# I had to do this to get my AX210 card in my Framework laptop to function on the Kali 2022.3 live everything iso.
# Connect to the internet before running this script so that the firmware can update via apt.
# Remove the broken firmware file.
rm /lib/firmware/iwlwifi-ty-a0-gf-a0.pnvm
# Remove the loaded kernel modules.
rmmod iwlmvm
rmmod iwlwifi
# Update the firmware files.
apt update
apt install firmware-iwlwifi
sleep3
# Reload working modules.
modprobe -r iwlwifi ; modprobe iwlwifi
# Let modules load and show working wifi cards.
sleep 5
iwconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment