Created
March 16, 2020 21:52
-
-
Save ricardoochoa/422e5c900d162a9264c3e8cfec9b3e17 to your computer and use it in GitHub Desktop.
Turn on / off your wifi network card in the Ubuntu terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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