Explore >> Select a destination


You are here

ramonh.dev
| | www.learnitguide.net
4.3 parsecs away

Travel
| | How to Set DNS to 8.8.8.8 in Linux, ?, linux dns server, linux dns server configuration, simple dns server linux, configure dns
| | memo.mx
2.6 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...
| | www.codemadness.org
3.2 parsecs away

Travel
| | A guide to get a USB-powerline bridge with the Intellon 51x1 chipset working on Linux
| | vickiboykis.com
13.2 parsecs away

Travel
| When I'm working with Jupyter notebooks, I often want to work with them from within a virtual environment. The general best practice is that you should always use either virtual environments or Docker containers for working with Python, for reasons outlined in this post, or you're gonna have a bad time. I know I have. The workflow is a little long, so I thought I'd document it for future me here.