Posts

Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP)

Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP) https://github.com/stalwartlabs/mail-server

Preserve bash history in multiple terminal windows

Add the following to your  ~/.bashrc : # Avoid duplicates HISTCONTROL=ignoredups:erasedups # When the shell exits, append to the history file instead of overwriting it shopt -s histappend # After each command, append to the history file and reread it PROMPT_COMMAND= " ${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'} history -a; history -c; history -r"

Open source Zapier alternative

https://automatisch.io/?ref=openalternative

Docker "ERROR: could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network"

Docker may be at its maximum of created networks. The command  docker network prune  can be used to remove all networks not used by at least one container. docker network ls Remove unused docker network

Maven Lifecycle

https://www.scaler.com/topics/maven-lifecycle/

wsl 777 permission bold green color remove

  export LS_COLORS= " $LS_COLORS :ow=1;34:tw=1;34:" source ~/.bashrc

Make your wsl 2 Current Distro Run Systemd

By this installation, systemd is enabled in your WSL 2 distro. Download and run the latest installer script. curl -L -O "https://raw.githubusercontent.com/nullpo-head/wsl-distrod/main/install.sh" chmod +x install.sh sudo ./install.sh install This script installs distrod, but doesn't enable it yet. Enable distrod in your distro You have two options. If you want to automatically start your distro on Windows startup, enable distrod by the following command /opt/distrod/bin/distrod enable --start-on-windows-boot Otherwise, /opt/distrod/bin/distrod enable You can run enable with --start-on-windows-boot again if you want to enable autostart later. Restart your distro Close your WSL's terminal. Open a new Command Prompt window, and run the following command. wsl --terminate Distrod After re-opening a new WSL window, your shell runs in a systemd session