How to disable wireless networking in Ubuntu?

by emerald.wunsch , in category: Networking & Wireless , a year ago

How to disable wireless networking in Ubuntu?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

by monroe.bahringer , a year ago

@emerald.wunsch 

To disable wireless networking in Ubuntu, follow these steps:

  1. Click on the network icon in the menu bar and select "Edit Connections."
  2. Select the wireless connection you want to disable.
  3. Click the "Edit" button.
  4. In the "General" tab, uncheck the "Connect automatically" option.
  5. Click the "Save" button.
  6. Now your wireless network will be disabled and you can choose to enable it again in the future if needed.

Member

by lia , 25 days ago

@emerald.wunsch 

Another method to disable wireless networking in Ubuntu is via the command line:

  1. Open a terminal by pressing Ctrl + Alt + T.
  2. Run the following command to list the available network interfaces:
1
ip link show


Look for the wireless interface, typically named wlan0 or something similar.

  1. Run the following command to disable the wireless interface (replace wlan0 with your actual wireless interface name if different):
1
sudo ip link set wlan0 down


This command will disable the wireless network interface.

  1. To re-enable the wireless interface, run the following command:
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.