Explore >> Select a destination


You are here

piware.de
| | 0pointer.net
11.6 parsecs away

Travel
| | Posts and writings by Lennart Poettering
| | hauleth.dev
13.1 parsecs away

Travel
| | Blog about BEAM, Rust, fantasy & stuff Who Watches Watchmen? - Part 2 Continuation of travel into making systemd to work for us, not against us. This time we will talk about socket activation and how to make our application run only when we need it to run.
| | libvirt.org
13.6 parsecs away

Travel
| | libvirt, virtualization, virtualization API
| | memo.mx
82.2 parsecs away

Travel
| WSL configuration Install i3 sudo apt install i3 -y Create an init script vim ~/src/scripts/i3launch.sh #!/bin/zsh source ~/.zshrc # If not running interactively, don't do anything [ -z "$PS1" ] && return export DISPLAY=$(awk '/nameserver / {print $2; exit}' /etc/resolv.conf 2>/dev/null):0 export LIBGL_ALWAYS_INDIRECT=1 dbus_status=$(service dbus status) if [[ $dbus_status = *"is not running"* ]]; then sudo service dbus --full-restart fi i3 To run WSL2 as root wsl.exe -d Ubuntu-20.04 -u root -- /bin/bash...