Sprüche

Sprüche aus allen und für alle Lebenslagen… Pick your fights! Hör auf zu kämpfen, wenn du schon gewonnen hast! Beantworte keine Fragen, die nicht gestellt wurden!

Read more →

Screenmovie

Linux Desktop

Wie kann man ein Screenmovie erzeugen? Das macht sich ganz gut z.B. als Anleitung oder Demo. #!/bin/bash DSIZE="$(xdpyinfo | grep dimensions | awk '{print $2}' | awk '{print $1, $2}')" sleep 5 ffmpeg -f x11grab -nostdin -loglevel quiet -s $DSIZE -r 25 -i :0.0 -c:v libx264 -preset ultrafast -threads 8 screen_$(date +%Y%m%d_%H%M%S)

Read more →

Anmeldeproblem mit Nextcloud Desktop-Clients Wenn der Server, auf dem Nextcloud läuft, hinter einem Proxy steht, der für die Absicherung mittels SSL zuständig ist (in docker-compose Szenarien meist ein Nginx Proxy), dann kommen die Desktop-Clients damit nicht klar. Fehlerbild ist, dass man sein Login und Passwort korrekt eingibt und dann geht es nicht weiter. Den Tipp hab ich im Netz gefunden: Thanks for the tips, @DooNa1oh! For my instance I just had to add the ‘overwriteprotocol’ to my Nextcloud config.

Read more →

rsync in Aktion rsync --numeric-ids --del --exclude=/sys/* --exclude=/proc/* --exclude=/etc/udev/* --exclude=/run/* --exclude=/etc/fstab -vauHAX -e ssh root@quell.ip:/ /

Read more →

Wie verhindere ich das (ungewollte) Update von Paketen mit Systemmitteln? Beispiele /etc/apt/preferences.d/thunderbird Package: thunderbird* Pin: version 1:45.8.* Pin-Priority: 1000 /etc/apt/preferences.d/enigmail Package: enigmail Pin: version 2:1.8.2* Pin-Priority: 1000

Read more →