Explore >> Select a destination


You are here

willhaley.com
| | blog.nuculabs.de
8.2 parsecs away

Travel
| | Hi ?? The purpose of this article is to get you started quickly with a Home Assistant on a Raspberry Pi. It's a simple walkthrough on how to install Home Assistant and configure it so it will boot with your PI. I will use my old Raspberry PI V3 board. Flashing the Raspberry PI OS You will need a microSD card of reasonable size, I'm using a 16GB one and a USB Adapter to connect it with my PC.
| | lukesingham.com
8.7 parsecs away

Travel
| | Block all advertisements for all devices on my home WiFi network
| | aykevl.nl
9.1 parsecs away

Travel
| | How to move an installed SD card from a Pi 1 to a Pi 3, or make it possible to use them both. There are a few tricks to get the network running on both devices.
| | memo.mx
58.5 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...