Skip to content

Instantly share code, notes, and snippets.

@al20ov
al20ov / install.sh
Last active April 30, 2026 20:41
Void Linux on Rock 5B Plus installation notes
fallocate -l 2G void.img
dd \
if=Armbian_26.2.1_Rock-5b-plus_trixie_current_6.18.15_minimal.img \
of=void.img \
bs=512 \
skip=64 \
seek=64 \
count=32704 \
conv=notrunc # Copy bootloaders (spl/idbloader and proprietary memory training blob, u-boot, etc...) from the start of an Armbian image but don't copy the first 64 sectors because that's the GPT headers.
@al20ov
al20ov / 50-cloud-init.yaml
Created August 22, 2021 22:13
configure network bridge on ubuntu for raspberry pi (to share LAN with lxc containers)
# /etc/netplan/50-cloud-init.yaml
network:
ethernets:
eth0:
dhcp4: false
bridges:
br0:
dhcp4: true
interfaces: