ffmpeg -i in.mp4 -profile:v baseline -vf „scale=iw/4:ih/4“ out.mp4
Bildgröße vierteln mit „scale=iw/4:ih/4“
Bildgröße halbieren mit „scale=iw/2:ih/2“
und so weiter
ffmpeg -i in.mp4 -profile:v baseline -vf „scale=iw/4:ih/4“ out.mp4
Bildgröße vierteln mit „scale=iw/4:ih/4“
Bildgröße halbieren mit „scale=iw/2:ih/2“
und so weiter
find . -type f -newermt "$(date '+2019-07-01 13:00:00')"
Finde alles vom Type Datei das neuer als das Datum/Zeit 01.07.2019 um 13:00 Uhr ist.
IMAP:
IMAP-SERVER: aiolos.carbon4.de
BENUTZERNAME: Ihre E-Mailadresse
PASSWORT: Ihr Passwort
PORT: 993
SICHERHEITSTYP: SSL/TLS
SMTP:
SMTP-SERVER: aiolos.carbon4.de
BENUTZERNAME: Ihre E-Mailadresse
PASSWORT: Ihr Passwort
PORT: 465
SICHERHEITSTYP: SSL/TLS
1. Installieren von Mozilla Thunderbird.
2. Kopieren der mbox Datei in folgendes Verzeichnis:
$HOME/.thunderbird/ "Ihr Profil Ordner" /Mail/Local Folders
3. Starten Thunderbird unter Lokale Ordner wird die mbox angezeigt.
IMAP:
IMAP-SERVER: carbon4.de
BENUTZERNAME: Ihre E-Mailadresse
PASSWORT: Ihr Passwort
PORT: 993
SICHERHEITSTYP: SSL/TLS
SMTP:
SMTP-SERVER: carbon4.de
BENUTZERNAME: Ihre E-Mailadresse
PASSWORT: Ihr Passwort
PORT: 465
SICHERHEITSTYP: SSL/TLS
grep -Eo "\(compatible;[[:space:]].*" /path/to/log | cut -f2 -d";" | sort -h | uniq -c | sort -h | tail -
convert rechteckig.png -gravity center -background none -resize 512x512 -extent 512x512 quardartisch.png
-gravity center : Das Bild wird mittig ausgerichtet
-background none : Der transparente Hintergrund wird erhalten
-resize 512×512 : Das Bild wird auf diese Größe verkleinert
-extent 512×512 : Das Rechteck wird auf diese Größe zum Quadrat erweitert
Um die Adressleiste wieder anzuzeigen wie früher.
dconf write /org/gnome/nautilus/preferences/always-use-location-entry true
find /pfad/zum/ziel -type d -exec chmod 755 {} \;
find /pfad/zum/ziel -type f -exec chmod 644 {} \;
convert bg.webp -resize "1200x>" -write bg-1200.webp -resize "768x>" -write bg-768.webp -resize "576x>" bg-576.webp
dd if=/dev/sda of=~/disk1.img
Erstellt eine Image Datei von /dev/sda
dd if=disk1.img of=/dev/sda
Wiederherstellung aus disk.img nach /dev/sda
find -type f -exec sed -i 's/SUCHTEXT/ERSETZUNGSTEXT/g' {} \;
Prüft ob eine Verbindung zum Router möglich ist, falls nicht wird neu gestartet.
#!/bin/bash ROUTER_IP=192.168.0.1 ( ! ping -c1 $ROUTER_IP >/dev/null 2>&1 ) && reboot
crontab Eintrag um die Prüfung alle 5 Minuten auszuführen.
*/5 * * * * /path/to/script.sh
Komprimiert das „input.pdf“ auf das unter „-dPDFSETTINGS“ eingestellte Qualitätsprofil und schreibt das Ergebnis in das „output.pdf“.
gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -sOutputFile=output.pdf input.pdf
-dPDFSETTINGS=/screen (screen-view-only quality, 72 dpi images) -dPDFSETTINGS=/ebook (low quality, 150 dpi images) -dPDFSETTINGS=/printer (high quality, 300 dpi images) -dPDFSETTINGS=/prepress (high quality, color preserving, 300 dpi imgs) -dPDFSETTINGS=/default (almost identical to /screen)
Weitere Optionen
-sPAPERSIZE=letter -sPAPERSIZE=a4 -dDEVICEWIDTHPOINTS=w -dDEVICEHEIGHTPOINTS=h (point=1/72 of an inch) -dFIXEDMEDIA (force paper size over the PostScript defined size)
-dEmbedAllFonts=true -dSubsetFonts=false -dFirstPage=pagenumber -dLastPage=pagenumber -dAutoRotatePages=/PageByPage -dAutoRotatePages=/All -dAutoRotatePages=/None -r1200 (resolution for pattern fills and fonts converted to bitmaps) -sPDFPassword=password
gs -sDEVICE=jpeg -r300 -dDownScaleFactor=4 -sOutputFile=output.jpg -dLastPage=1 input.pdf
echo 0 >/sys/class/leds/led0/brightness echo 0 >/sys/class/leds/led1/brightness
led0 = die Grüne
led1 = die Rote
echo 1 = an
echo 0 = aus