Skip to content

1.5-rolling: v1

Pre-release
Pre-release

Choose a tag to compare

@darkdragn darkdragn released this 17 Jun 08:30
· 2 commits to main since this release

Initial release of working image. After writing to an sdcard, please create a second partition formated ext4 with the label persistence and a file named persistence.conf with contents "/ union"

This is a quick snippet that will get you a working image:

########################
### Don't forget to fill this in ###
TARGET=/dev/sdX # Fill this in with your sdcard block device

cat vyos-r5s.img.gz | gunzip -c - |dd of=$TARGET bs=4M status=progress
printf "fix\n" | parted ---pretend-input-tty $TARGET print
parted --script $TARGET mkpart primary 3GB 100%
mkfs.ext4 -L persistence ${TARGET}2
mount ${TARGET}2 /mnt
echo "/ union" > /mnt/persistence.conf
umount /mnt
eject $TARGET