bat – more beautiful cat and MANPAGER

Reading man- and help- pages is boring. Thankfully we can color it with batcat. cat- alternative bat is an alternative for displaying file content instead of using cat. bat is capable of recognizing the syntax of multiple languages and displaying it highlightet known from our beloved IDE’s and texteditors. It even brings some Git integration. To install bat, run the following command in your terminal: sudo apt install batcat On Debian and Ubuntu bat uses the command batcat due to a conflict with a different binary....

February 24, 2023 Â· 2 min Â· 320 words Â· Fabian

ssh – Konfigurationen für Linux

Für Linux 20.04 groovy SSH Konfig (ssh_config) Um die Administration zu vereinfachen kann eine ssh-Konfigurationsdatei erstellt werden. user@ubuntu:~$ cd .ssh user@ubuntu:~/.ssh$ nano config Die Syntax für die Konfigurationsdatei sieht folgendermassen aus, viele weitere Parameter sind möglich. Manpage: ssh_config Host servername Hostname x.x.x.x Port 22 User root IdentityFile /path/to/keyfile.pem Aufruf einer ssh Verbindung im Terminal mittels Befehl ssh und dem Parameter (Hostname) aus dem Configfile. user@ubuntu:~/.ssh$ ssh servername ssh Key Import / Export Variante 1 mit ssh-copy-id Führe den Befehl ssh-copy-id mit dem untenstehenden Parameter auf und gib das Remote System Passwort ein Zur überprüfung kann die Datei authorized_keys mittels cat geöffnet werden user@ubuntu:~/....

February 22, 2023 Â· 4 min Â· 664 words Â· Fabian

MariaDB / MySQL – wordpress – change SiteURL

If you need to change the Site URLs of your WordPress installation you can do this by connecting to the server through the command line. This works if you are running MariaDB or MySQL. Connecting to the server To connect to your server on localhost run the following command. This will give you a prompt for the password. mysql -u root -p If you want to connect to a different server add the flag -h....

February 13, 2023 Â· 2 min Â· 248 words Â· Fabian

Doom emacs – Cheat Sheet

I recently startet working with emacs and the Doom framework. Below you find a list with usefully keybindings to start with. General SPC h r r restarts emacs SPC q q quit emacs SPC h d h or C-h d h or M-x doom/help shows the Doom emacs help SPC : or M-x open dialogue to search for any command SPC t l toggle line numbers (Disabled - Normal - Relative)...

January 26, 2023 Â· 2 min Â· 308 words Â· Fabian

Vim – Cheat Sheet

Movement h Move cursor left j Move cursor down k Move cursor up l Move cursor right ...

January 20, 2023 Â· 2 min Â· 218 words Â· Fabian

bash – pihole Update Skript

Beim update des pihole’s resp. des Betriebssystems kann es dazu kommen, dass der Update-Prozess hängenbleibt. Werden vor dem Update des Betriebssystems und des pihole die betroffenen Services gestoppt können Probleme dieser Art vermieden werden. Um dies zu vereinfachen habe ich mir ein Bash Skript zusammengestellt. Das Skript kann klar noch verbessert werden, erleichtert jedoch den Updateprozess erheblich. pihole Update Skript #!/bin/bash # Version 2 / pihole_update_v2.sh # The Script check Services related to the pihole and asks for updating....

October 13, 2021 Â· 2 min Â· 408 words Â· Fabian