diff --git a/tldr/az-feedback b/tldr/az-feedback index cb74fdeb..fdf20377 100644 --- a/tldr/az-feedback +++ b/tldr/az-feedback @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Send feedback to the Azure CLI Team. > Part of `azure-cli` (also known as `az`). -> More information: . +> More information: . - Send feedback to the Azure CLI Team: diff --git a/tldr/az-login b/tldr/az-login index 799cfb3f..e5ad853e 100644 --- a/tldr/az-login +++ b/tldr/az-login @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Log in to Azure. > Part of `azure-cli` (also known as `az`). -> More information: . +> More information: . - Log in interactively: diff --git a/tldr/az-logout b/tldr/az-logout index 683a494f..f99fbf82 100644 --- a/tldr/az-logout +++ b/tldr/az-logout @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Log out from an Azure subscription. > Part of `azure-cli` (also known as `az`). -> More information: . +> More information: . - Log out from the active account: diff --git a/tldr/docker-images b/tldr/docker-images index e45e2b18..212a41be 100644 --- a/tldr/docker-images +++ b/tldr/docker-images @@ -30,4 +30,4 @@ source: https://github.com/tldr-pages/tldr.git - Sort images by size: -`docker images --format "{{.ID}} {{.Size}} {{.Repository}}:{{.Tag}}" | sort -k 2 -h` +`docker images --format "\{\{.ID\}\} \{\{.Size\}\} \{\{.Repository\}\}:\{\{.Tag\}\}" | sort -k 2 -h` diff --git a/tldr/linux/init b/tldr/linux/init new file mode 100644 index 00000000..a69b3eb2 --- /dev/null +++ b/tldr/linux/init @@ -0,0 +1,30 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# init + +> Linux run level manager. +> Requires the SYSVINIT compile-time option to be enabled if using systemd. +> More information: . + +- Set the system to run a graphical environment: + +`sudo init 5` + +- Set the system to run multiuser terminal: + +`sudo init 3` + +- Shut down the system: + +`init 0` + +- Reboot the system: + +`init 6` + +- Set the system to run on terminal with only root user allowed and no networking: + +`sudo init 1` diff --git a/tldr/linux/tuned-adm b/tldr/linux/tuned-adm new file mode 100644 index 00000000..151a86f7 --- /dev/null +++ b/tldr/linux/tuned-adm @@ -0,0 +1,29 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# tuned-adm + +> Manage and optimize system performance tuning profiles on Linux. +> More information: . + +- List available profiles: + +`tuned-adm list` + +- Show the currently active profile: + +`tuned-adm active` + +- Set a specific tuning profile: + +`tuned-adm profile {{profile_name}}` + +- Recommend a suitable profile based on the current system: + +`tuned-adm recommend` + +- Disable tuning: + +`tuned-adm off` diff --git a/tldr/pdfjoin b/tldr/pdfjoin index c6eb9c51..e6d525a3 100644 --- a/tldr/pdfjoin +++ b/tldr/pdfjoin @@ -22,4 +22,4 @@ source: https://github.com/tldr-pages/tldr.git - Merge page subranges from two PDFs: -`pdfjoin {/path/to/file1.pdf}} {{2-}} {{file2}} {{last-3}} --outfile {{output_file}}` +`pdfjoin {{/path/to/file1.pdf}} {{2-}} {{file2}} {{last-3}} --outfile {{output_file}}`