Blog

14 entries

  • Systemd Service Not Starting? How to Fix It

    2026-09-14

    Systemd service not starting? Read journalctl the right way, fix the five causes behind most failures, and get the unit back to active in minutes.

  • GGUF Quantization: Which Level Should You Use?

    2026-09-13

    GGUF quantization levels compared: Q4_K_M vs Q8_0 perplexity, file size math, VRAM per level, and one rule for picking the right quant for your GPU.

  • Cron vs systemd timers: which should you use?

    2026-09-11

    Cron vs systemd timers compared: syntax, logging, catch-up runs and dependencies — plus a decision table so your next scheduled job lands in the right place.

  • llama.cpp vs Ollama: Which Should You Run in 2026?

    2026-09-10

    llama.cpp vs Ollama: Ollama wraps llama.cpp for convenience, raw llama.cpp wins on speed and control. Benchmarks, GPU offload flags, and when each wins.

  • Git Remove Untracked Files: Safe git clean Guide

    2026-09-09

    Git remove untracked files safely with git clean: dry-run first, -fd for directories, -x for ignored files — plus why git clean isn't removing anything.

  • Rsync vs SCP: Which Linux Copy Command to Use

    2026-09-08

    Rsync vs scp: rsync resumes a dropped transfer and copies only what changed — scp just copies. Speed numbers, the flags that matter, and when scp still wins.

  • Git Sync Fork With Upstream: 3 Safe Methods

    2026-09-06

    git sync fork with upstream three ways: the two-command pull, a rebase for clean history, GitHub's sync button — plus fixes when your fork won't sync.

  • ss vs netstat: Which Linux Port Command to Use

    2026-09-05

    ss vs netstat: netstat is legacy on modern Linux, and ss replaces it flag for flag. Get the mapping table, find the process behind any port, and a cheat sheet.

  • Git Undo Last Commit: Keep Changes, Stay Safe

    2026-09-03

    Git undo last commit the safe way: keep the changes with reset --soft, unstage with --mixed, or fix a pushed commit with revert — exact commands for each.