mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
571 B
Plaintext
30 lines
571 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# physlock
|
|
|
|
> Lock all consoles and virtual terminals.
|
|
> More information: <https://github.com/xyb3rt/physlock#usage>.
|
|
|
|
- Lock every console (require current user or root to unlock):
|
|
|
|
`physlock`
|
|
|
|
- Mute kernel messages on console while locked:
|
|
|
|
`physlock -m`
|
|
|
|
- Disable SysRq mechanism while locked:
|
|
|
|
`physlock -s`
|
|
|
|
- Display a message before the password prompt:
|
|
|
|
`physlock -p "{{Locked!}}"`
|
|
|
|
- Fork and detach physlock (useful for suspend or hibernate scripts):
|
|
|
|
`physlock -d`
|