home.social

#systemadministration — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #systemadministration, aggregated by home.social.

  1. Linux tip: Use “journalctl -f -u servicename” for real-time service logs. The “-u” targets specific service units, “-f” follows live output. Add “-p err” for errors only.

    🔗 Learn more in my course: monospacementor.com/courses/li

    #Linux #SystemAdministration

  2. 🚨LIVE NOW!🚨 DevOps/SRE Instructor Livestream

    On this lovely Monday, let's chat about #Linux #SystemAdministration, #SelfHosting, or any other topic in the #DevOps and #SRE space you're interested in!

    Owncast: live.monospacementor.com/

  3. Linux tip: Use “systemctl mask servicename” to securely prevent a service from starting. Masked services can't start, even if they're enabled accidentally. “systemctl unmask” reverts the block.

    🔗 Learn more in my course: monospacementor.com/courses/li

    #Linux #SystemAdministration

  4. Linux tip: Use the “setgid” mode bit on shared directories: “chmod g+s /shared/project”. New files will inherit group ownership, which prevents permission chaos between users.

    🔗 Learn more in my course: monospacementor.com/courses/li

    #Linux #SystemAdministration #SysAdmin

  5. Never trust untested backups. With Borgmatic, use `borgmatic check --verbosity 2` for repository integrity and `borgmatic extract --dry-run` to simulate restores. Schedule monthly tests.

    🔗 Learn more in my course: monospacementor.com/courses/li

    #Linux #SystemAdministration

  6. Hey #Mastodon users running online servers,
    I have a question:

    Is auto-ban IP for 24h systematically if they call well known ports without any service provided (FTP / SMB / ...) a good way to limit port scanners efficiency?

    #network #web #SystemAdministration

  7. Hello #Mastodon! First post here.

    I've been developing mend: a Zsh-native recovery tool for #ArchLinux. It maps terminal exit codes to the Arch Wiki using #fzf.

    v0.4.0 is live. Short demo video attached. (1/2)

    #Linux #OpenSource #Zsh #TUI #SystemAdministration #AUR #Mend

  8. Hello #Mastodon! First post here.

    I've been developing mend: a Zsh-native recovery tool for #ArchLinux. It maps terminal exit codes to the Arch Wiki using #fzf.

    v0.4.0 is live. Short demo video attached. (1/2)

    #Linux #OpenSource #Zsh #TUI #SystemAdministration #AUR #Mend

  9. Hello #Mastodon! First post here.

    I've been developing mend: a Zsh-native recovery tool for #ArchLinux. It maps terminal exit codes to the Arch Wiki using #fzf.

    v0.4.0 is live. Short demo video attached. (1/2)

    #Linux #OpenSource #Zsh #TUI #SystemAdministration #AUR #Mend

  10. Hello #Mastodon! First post here.

    I've been developing mend: a Zsh-native recovery tool for #ArchLinux. It maps terminal exit codes to the Arch Wiki using #fzf.

    v0.4.0 is live. Short demo video attached. (1/2)

    #Linux #OpenSource #Zsh #TUI #SystemAdministration #AUR #Mend

  11. Hello #Mastodon! First post here.

    I've been developing mend: a Zsh-native recovery tool for #ArchLinux. It maps terminal exit codes to the Arch Wiki using #fzf.

    v0.4.0 is live. Short demo video attached. (1/2)

    #Linux #OpenSource #Zsh #TUI #SystemAdministration #AUR #Mend

  12. #Linux security best practice: Create system user accounts for services that can’t be used for login: `useradd -r -s /sbin/nologin servicename`

    🔗 Learn more in my course: monospacementor.com/courses/li

    #Linux #SystemAdministration #SysAdmin

  13. TIL (at 3 am): Upgrading Dovecot is not fun when the behavior changes a lot. Took several hours to get it running identical to before. But at least I could remove some old configuration parts.

    kittsteiner.blog/blog/2026/dov #Debian #DevOps #Dovecot #Linux #selfHosting #Sysadmin #SystemAdministration #TIL
  14. Easy way to kickstart a runbook: Log actions with “history | tail -20 | tee file.md” to capture recent commands, then add explanations.

    🔗 Learn more in my course: monospacementor.com/courses/li

    #Linux #SystemAdministration #SysAdmin

  15. Linux tip: Use “ss -tuln” to check for open ports. Filter specific port numbers by adding “| grep :80”, for example.

    🔗 Learn more in my course: monospacementor.com/courses/li

    #Linux #SystemAdministration #SysAdmin

  16. If you want to raise your shell scripts to a new level, give this a try! It'll give useful feedback on the style of your shell code and on possible issues with it.

    shellcheck.net/

    PS: Know when to switch to a proper programming language.

    #Linux #SysAdmin #SystemAdministration

  17. If your terminal ever gets confused by random control sequences, for example after you accidentally output binary data, there's a good chance you can restore order with the `reset` command.

    #Linux #Shell #SystemAdministration #SysAdmin

  18. Linux tip: Full filesystems crash services and corrupt data. Find resource hogs with “df -h” (filesystem usage) and “du -sh /var/log/*” (large directories).

    🔗 Learn more in my course: monospacementor.com/courses/li

    #Linux #SystemAdministration

  19. Vergleich von Archivierung und Kompression unter Linux: tar/star, gzip, bzip2, xz und zip

    Archivierungs- und Kompressionstechniken sind wichtige Werkzeuge, um Dateien und Verzeichnisse unter Linux effizient zu speichern. Dabei unterscheidet man zwischen der Archivierung, bei der mehrere Dateien zu einer Einheit gebündelt werden, und der Kompression, bei der die Datenmenge verkleinert wird. Archivierung und Kompression: tar als Pflicht für Ordner tar ist das Standardwerkzeug für die Archivierung von Ordnern unter Linux. Es bündelt Dateien und Verzeichnisse in einem Archiv, […]

    andreas-moor.de/vergleich-von-

  20. Die sieben Dateitypen unter Linux

    „Alles ist eine Datei.“ Das ist eines der grundlegenden Prinzipien von Linux und Unix-Systemen. Red Hat Enterprise Linux (RHEL) und alle anderen Linux-Distributionen sowie Unix-ähnliche Systeme unterscheiden sieben verschiedene Dateitypen, die unterschiedliche Funktionen erfüllen. Diese Typen erkennt man leicht mit dem Befehl ls -l am ersten Zeichen in der Ausgabe. Dieses Wissen ist essenziell für jeden Linux-Admin, unabhängig von der Distribution. Die sieben Dateitypen im […]

    andreas-moor.de/die-sieben-dat

  21. Dateien und Verzeichnisse kopieren in Linux mit cp

    Einleitung Das Kopieren von Dateien und Verzeichnissen mit dem cp-Befehl ist eine grundlegende Aufgabe in der Linux-Systemadministration. Systemadministratoren benötigen diese Kenntnisse für effiziente Dateiverwaltung, Backups und den sicheren Transport von Datenstrukturen. Hinweis: Dieses Thema ist explizit in den RHCSA-Zielen enthalten ("Dateien und Verzeichnisse erstellen, löschen, kopieren und verschieben"). Grundlegende Syntax Der cp-Befehl verwendet die Syntax cp [Optionen] […]

    andreas-moor.de/4803-2/

  22. Warum die Kommandozeile dein wichtigstes Linux‑Werkzeug ist

    Warum du die Werkzeugkasten‑Philosophie kennen solltest Wenn du als Administrator ernsthaft mit Linux arbeiten willst, kommst du an der Kommandozeile nicht vorbei. Anders als grafische Oberflächen, die dir meistens große, monolithische Programmpakete an die Hand geben, setzt die Kommandozeile auf viele kleine Werkzeuge, die du frei kombinieren kannst, um maßgeschneiderte Lösungen für deine Aufgaben zu bauen. Gerade im Server‑Umfeld, bei Automatisierung, Skripting und Fehlersuche […]

    andreas-moor.de/warum-die-komm

  23. Digitale Souveränität: Warum sie Europa verändert – und was das für dich als Admin bedeutet

    Warum du digitale Souveränität kennen solltest Digitale Souveränität ist längst nicht mehr nur ein politisches Schlagwort, sondern wirkt sich ganz konkret auf Architekturentscheidungen, Tool-Auswahl, Compliance-Anforderungen und damit auf deinen Alltag als Systemadministrator aus. Je besser du verstehst, wie Europa und Deutschland ihre digitale Unabhängigkeit stärken wollen, desto gezielter kannst du deine Infrastruktur ausrichten und dir neue Jobchancen sichern. Was digitale […]

    andreas-moor.de/digitale-souve

  24. NixOS – Ein ungewöhnliches Linux für reproduzierbare Systeme

    Warum du NixOS kennen solltest Wenn du als Administrator nach einem Betriebssystem suchst, das Updates, Rollbacks und Konfigurationen deutlich berechenbarer macht als klassische Distributionen, kommst du an NixOS kaum vorbei. NixOS verfolgt einen radikal anderen Ansatz: Dein gesamtes System – vom Bootloader bis zu Diensten – wird deklarativ in Konfigurationsdateien beschrieben und dann aus dieser Beschreibung reproduzierbar gebaut. Das ist vor allem dann spannend, wenn du viele Systeme […]

    andreas-moor.de/nixos-ein-unge