Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

34
tldr/linux/nmcli-general Normal file
View File

@@ -0,0 +1,34 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# nmcli general
> Manage general settings of NetworkManager.
> This subcommand can also be called with `nmcli g`.
> More information: <https://networkmanager.dev/docs/api/latest/nmcli.html>.
- Show the general status of NetworkManager:
`nmcli general`
- Show the hostname of the current device:
`nmcli general hostname`
- Change the hostname of the current device:
`sudo nmcli general hostname {{new_hostname}}`
- Show the permissions of NetworkManager:
`nmcli general permissions`
- Show the current logging level and domains:
`nmcli general logging`
- Set the logging level and/or domains (see `man NetworkManager.conf` for all available domains):
`nmcli general logging level {{INFO|OFF|ERR|WARN|DEBUG|TRACE}} domain {{domain_1,domain_2,...}}`