Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-04 00:17:43 +00:00
parent a03cd9f584
commit 54fbdb75a0
14 changed files with 193 additions and 44 deletions

View File

@@ -0,0 +1,22 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# systemctl reload
> Reload a service's configuration without restarting it.
> This reloads the service itself (like Apache or Nginx configs), not the systemd unit file.
> To reload unit files, use `systemctl daemon-reload`.
- Reload a service:
`systemctl reload {{nginx}}`
- Reload multiple services:
`systemctl reload {{networking apache2 ...}}`
- Reload a service for the current user:
`systemctl --user reload {{pipewire}}`