Live dmesg output in human readable format (colors, timing) dmesg -wH
Do you want Search?
Random Post
Search
-
-
CLI: PNG Bilder optimieren
PNG sollte man gerade im Web optimieren, damit zum Beispiel die Website schneller geladen wird. Das kann man direkt auf dem Server mit Optipng erledigen. Optipng installieren (Ubuntu) sudo apt-get install optipng…
-
CLI: Installierte Ubuntu/Debian Pakete anzeigen
Kurz und knapp: # Pakete auflisten dpkg --list # Paket Infi anzeigen dpkg --info packageName # Paket entfernen apt-get remove packageName
-
CLI Magic: Print log lines per minute stats in real time.
tail -f maillog | awk '{c++;t=substr($0,0,12);if (t!=ot){print c " " ot; c=0;ot=t}}' Via: Twitter
-
Command Line Magic: strace to show the files openssl is opening
-
Command Line Magic: List the 20 largest files or folders under the current working directory