Skip to content

Instantly share code, notes, and snippets.

@john-clark
Last active August 24, 2022 02:07
Show Gist options
  • Save john-clark/25bed08633ff712114a36aaebc81cbe5 to your computer and use it in GitHub Desktop.
Save john-clark/25bed08633ff712114a36aaebc81cbe5 to your computer and use it in GitHub Desktop.
Debian working WIFI setup for non-free ISO install

Make WIFI work on Debian after a NET install or non-free ISO with/without a desktop environment or to install/remove additional packages.


Before rebooting to new system, after the install, dont reboot.

With graphical installer: Use the Ctrl+Alt+F2 key combination to switch to virtual terminal 2.

Without the graphical installer: Press the ESC key, Go to Execute a shell.

Alt text

Run these commands:

chroot /target
apt update
apt upgrade -y
apt install network-manager -y
exit
reboot

When you reboot to the installed system, run these commands:

systemctl enable NetworkManager
systemctl start NetworkManager
nmtui

Now you can connect to your wifi with nmtui.


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