mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
482 B
Plaintext
22 lines
482 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# ctrlaltdel
|
|
|
|
> Utility to control what happens when CTRL+ALT+DEL is pressed.
|
|
> More information: <https://manned.org/ctrlaltdel>.
|
|
|
|
- Get current setting:
|
|
|
|
`ctrlaltdel`
|
|
|
|
- Set CTRL+ALT+DEL to reboot immediately, without any preparation:
|
|
|
|
`sudo ctrlaltdel hard`
|
|
|
|
- Set CTRL+ALT+DEL to reboot "normally", giving processes a chance to exit first (send SIGINT to PID1):
|
|
|
|
`sudo ctrlaltdel soft`
|