Advanced Search
Search Results
221 total results found
Stirling PDF
version: '3.3' services: stirling-pdf: restart: unless-stopped image: stirlingtools/stirling-pdf:0.38.0 ports: - '8080:8080' volumes: - trainingData:/usr/share/tessdata # Required for extra OCR languages - extraCo...
DocuSeal (Docusign Alternative)
https://github.com/docusealco/docuseal services: app: depends_on: postgres: condition: service_healthy image: docuseal/docuseal:1.9.8 ports: - 3000:3000 volumes: - app:/data/docuseal environment: ...
Grafana + Prometheus + Loki
docker-compose.yml services: grafana: image: grafana/grafana-oss:11.5.1-ubuntu container_name: grafana hostname: grafana restart: unless-stopped environment: - GF_SERVER_ROOT_URL=https://grafana.MEINEDOMAIN.de - G...
Lokale KI mit Ollama + open-WebUI
Quelle: https://www.youtube.com/watch?v=vW29hgdb05I abgeändert für AMD Ryzen AI Max+ 395 (dockerimage ollama/ollama:rocm und devices) 2026-03-24 als erstes amdgpu installieren mit https://amdgpu-install.readthedocs.io/en/latest/install-overview.html#...
Hoarder (Bookmark-Senke)
services: web: image: ghcr.io/hoarder-app/hoarder:${HOARDER_VERSION:-release} restart: unless-stopped volumes: # By default, the data is stored in a docker volume called "data". # If you want to mount a custom directory, chan...
LVM resize
Um die Größe eines Logical Volume (LV) zu erweitern, müssen folgende Befehle eingegeben werden: # Listed die Disks und ihre Partitionen lsblk # Extended das lv auf 100% sudo lvextend -l 100%VG ubuntu-vg/ubuntu-lv # nutzt resize2fs um das lv zu erweite...
Intel N150 GPU aktivieren: Kernel-Update
Quelle https://www.number13.de/nipogi-e1-mit-intel-n150-als-mini-server-im-test/ Eikes Ulti-Kommando: sudo add-apt-repository ppa:cappelikan/ppa sudo apt update && sudo apt upgrade -y sudo apt install -y mainline policykit-1 mainline install 6.11.XXX # A...
RDP: Kennwort ändern verhindern
win+r (Ausführen) lusrmgr.msc starten. Benutzer > User auswählen: ändern zu
Cloud-init
Cloud-Init für Ubuntu-Server: neu mit ranger, atuin, lazydocker und btop++ Public SSH-Key selbst eintragen! #cloud-config # Hostname und Zeitzone hostname: hz-01 timezone: Europe/Berlin # System-Updates und Paketquellen package_update: true packag...
Docker Standardverzeichnis ändern
aktuelles Dir abfragen: docker info | grep 'Docker Root Dir' daemon.json erstellen falls nicht vorhanden oder ändern: nano /etc/docker/daemon.json { "data-root": "/path/to/new/docker-data" } # docker stoppen sudo systemctl stop docker sudo systemc...
sshfs
sshfs mountet SFTP Verbindungen. Quelle: https://www.lexo.ch/blog/2025/01/linux-how-to-mount-sftp-file-system/ apt update apt install sshfs # hz-02 via SFTP mounten mkdir /mnt/pl-hz-02 sshfs root@pl-hz-02:/ -p 22 -o IdentityFile=/root/.ssh/id_ed25519_...
Gruppen-IDs anzeigen
# in postgresql container bashen docker exec -it nextcloud-db-1 /bin/bash # in postgresql-db mit nextcloud einloggen psql -U nextcloud nextcloud # bzw. für nextcloud-aio manual-install container: psql -U oc_nextcloud -d nextcloud_database # oc_groups...
Desktop Environment + VNC für Ubuntu Server installieren
Um für Fernwartung einen Webbrowser über VNC auf einem Ubuntu Server zu bedienen, müssen ein Desktop-Environment (DE) und VPN-Server installiert werden. Der Vorgang wird auf Ubuntu Server 24.04.2 LTS durchgeführt. Ich benötige neben einer SSH Verbindung zu ei...
SSH in Unifi AP + Geräte im Netz finden
Standard SSH-Zugangsdaten für Unifi APs wie zb U7-Pro oder U6-LR: user: ubnt pw: ubnt Controller zuweisen set-inform http://ip-of-controller:8080/inform Geräte im Netz mit HostiFi entdecken chmod a+x HostiFi.Device.Discovery.Tool-2.2.3.AppImage ....
groupfolders:scan
occ groupfolders:create <name> → create a group folder occ groupfolders:delete <folder_id> [-f|--force] → delete a group folder and all its contents occ groupfolders:expire → trigger file version expiration (see Nextcloud docs for details) occ groupfolder...
Nextcloud AIO
Nextcloud All-In-One Manual-Install Manual-install statt Auto-install mit AIO-Webinterface, um Möglichkeiten wie admin-pw, container-versionen, SSE, S3 Primary Storage usw bearbeiten zu können und es zu einem späteren Zeitpunkt besser zu Kubernetes/Swarm übe...
SSH: Permissions too open
Fehlermeldung: Dateirechte sind zu offen, weil der Key zb einfach als Datei erzeugt wurde: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
Nexterm (SSH, VNC, RDP über Web-UI)
docker-compose.yml services: nexterm: image: germannewsmaker/nexterm:1.0.3-OPEN-PREVIEW ports: - "6989:6989" restart: unless-stopped volumes: - data:/app/data environment: ENCRYPTION_KEY: f0a8e...<openssl rand ...