71 lines
1.7 KiB
Markdown
71 lines
1.7 KiB
Markdown
# Stirling PDF Fedora Local
|
|
|
|
Lokale Stirling-PDF-Installation für Fedora mit Podman und Chromium-App-Fenster.
|
|
|
|
## Ziel
|
|
|
|
- vollständige lokale Stirling-PDF-Server-Version
|
|
- keine Cloud-Abhängigkeit
|
|
- nur lokal erreichbar unter http://127.0.0.1:8080
|
|
- startet wie eine normale GNOME-App
|
|
- Container stoppt automatisch beim Schließen des App-Fensters
|
|
- keine dauerhafte Hintergrundlast im Leerlauf
|
|
|
|
## Installation
|
|
|
|
git clone https://gitea.diehanis.de/Jan/Stirling_PDF_Fedora_Local.git
|
|
cd Stirling_PDF_Fedora_Local
|
|
./install.sh
|
|
|
|
Danach starten:
|
|
|
|
Super-Taste -> Stirling PDF
|
|
|
|
Oder direkt:
|
|
|
|
~/.local/bin/stirling-pdf-app
|
|
|
|
## Update
|
|
|
|
./update.sh
|
|
|
|
## Deinstallation
|
|
|
|
./uninstall.sh
|
|
|
|
## Status prüfen
|
|
|
|
podman ps
|
|
podman ps -a | grep stirling
|
|
podman logs stirling-pdf
|
|
|
|
## Lokale Daten
|
|
|
|
Persistente Daten liegen unter:
|
|
|
|
~/.local/share/stirling-pdf/
|
|
|
|
## Manuelle Notfall-Deinstallation
|
|
|
|
podman stop stirling-pdf 2>/dev/null || true
|
|
podman rm stirling-pdf 2>/dev/null || true
|
|
rm -f ~/.local/bin/stirling-pdf-app
|
|
rm -f ~/.local/share/applications/stirling-pdf.desktop
|
|
update-desktop-database ~/.local/share/applications 2>/dev/null || true
|
|
|
|
Optional Daten löschen:
|
|
|
|
rm -rf ~/.local/share/stirling-pdf
|
|
|
|
Optional Image löschen:
|
|
|
|
podman image rm docker.io/stirlingtools/stirling-pdf:latest
|
|
|
|
Optional Chromium entfernen:
|
|
|
|
sudo dnf remove -y chromium chromium-common
|
|
|
|
## Warum diese Lösung?
|
|
|
|
Die native Desktop-App ist komfortabel, aber bestimmte erweiterte Funktionen können einen Server oder Cloud-Zugang benötigen. Diese Podman-Lösung nutzt die vollständige lokale Stirling-PDF-Serverversion und bleibt lokal auf dem Laptop.
|