Update cheatsheets

This commit is contained in:
ivuorinen
2025-08-22 00:19:41 +00:00
parent e3b0522d15
commit 14f109720f
5 changed files with 76 additions and 3 deletions

29
tldr/linux/fbi Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# fbi
> Display images in a terminal framebuffer.
> More information: <https://manned.org/fbi>.
- Display an image:
`sudo fbi {{path/to/file}}`
- Display multiple images:
`sudo fbi {{path/to/file1 path/to/file2 ...}}`
- Start a slideshow with a custom delay (in seconds):
`sudo fbi {{[-t|--timeout]}} {{delay}} {{path/to/files/*}}`
- Scale the image to fit the screen:
`sudo fbi {{[-a|--autozoom]}} {{path/to/file}}`
- Display help:
`fbi {{[-h|--help]}}`

View File

@@ -0,0 +1,13 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# systemctl start
> Start systemd units.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#start%20PATTERN%E2%80%A6>.
- Start a unit:
`systemctl start {{unit}}`

17
tldr/linux/systemctl-stop Normal file
View File

@@ -0,0 +1,17 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# systemctl stop
> Stop systemd units.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#stop%20PATTERN%E2%80%A6>.
- Stop a unit:
`systemctl stop {{unit}}`
- Stop a service and suppress warnings:
`systemctl stop --no-warn {{unit}}`