Skip to content

Instantly share code, notes, and snippets.

@ricardoochoa
Created March 16, 2020 21:52
Show Gist options
  • Save ricardoochoa/422e5c900d162a9264c3e8cfec9b3e17 to your computer and use it in GitHub Desktop.
Save ricardoochoa/422e5c900d162a9264c3e8cfec9b3e17 to your computer and use it in GitHub Desktop.
Turn on / off your wifi network card in the Ubuntu terminal
# find the name of your wifi card
iwconfig
# if needed, install net-tools
sudo apt-get install net-tools
# turn it off
sudo ifconfig wlp2s0 down
# turn it on again
sudo ifconfig wlp2s0 up
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment