1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-17 10:35:45 +02:00
tldr/pages/linux/nmcli-radio.md

29 lines
612 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.
2025-08-10 13:53:13 +03:00
> More information: <https://networkmanager.pages.freedesktop.org/NetworkManager/NetworkManager/nmcli.html#radio>.
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}}`