1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-11 21:55:57 +02:00
tldr/pages/linux/nmcli-radio.md

29 lines
606 B
Markdown
Raw Normal View History

# nmcli radio
2023-08-02 07:26:52 +02:00
> Show the status of radio switches or enable/disable them using NetworkManager.
2024-10-10 10:22:22 +02:00
> More information: <https://networkmanager.pages.freedesktop.org/NetworkManager/NetworkManager/nmcli.html>.
2023-08-02 07:26:52 +02:00
- Show status of Wi-Fi:
2025-07-20 01:37:29 +03:00
`nmcli {{[r|radio]}} {{[w|wifi]}}`
2023-08-02 07:26:52 +02:00
- Turn Wi-Fi on or off:
2025-07-20 01:37:29 +03:00
`nmcli {{[r|radio]}} {{[w|wifi]}} {{on|off}}`
2023-08-02 07:26:52 +02:00
- Show status of WWAN:
2025-07-20 01:37:29 +03:00
`nmcli {{[r|radio]}} {{[ww|wwan]}}`
2023-08-02 07:26:52 +02:00
- Turn WWAN on or off:
2025-07-20 01:37:29 +03:00
`nmcli {{[r|radio]}} {{[ww|wwan]}} {{on|off}}`
2023-08-02 07:26:52 +02:00
- Show status of both switches:
2025-07-20 01:37:29 +03:00
`nmcli {{[r|radio]}}`
2023-08-02 07:26:52 +02:00
- Turn both switches on or off:
2025-07-20 01:37:29 +03:00
`nmcli {{[r|radio]}} {{[a|all]}} {{on|off}}`