mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-17 06:49:24 +00:00
Update cheatsheets
This commit is contained in:
30
tldr/linux/init
Normal file
30
tldr/linux/init
Normal file
@@ -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: <https://manned.org/man/init.8>.
|
||||
|
||||
- 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`
|
||||
29
tldr/linux/tuned-adm
Normal file
29
tldr/linux/tuned-adm
Normal file
@@ -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: <https://tuned-project.org>.
|
||||
|
||||
- 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`
|
||||
Reference in New Issue
Block a user