@emerald.wunsch
To disable wireless networking in Ubuntu, follow these steps:
@emerald.wunsch
Another method to disable wireless networking in Ubuntu is via the command line:
1
|
ip link show |
Look for the wireless interface, typically named wlan0
or something similar.
1
|
sudo ip link set wlan0 down |
This command will disable the wireless network interface.
1
|
sudo ip link set wlan0 up |
This will bring the wireless interface back up and allow you to connect to wireless networks again.
Using either of these methods should successfully disable wireless networking in Ubuntu.