2022-12-21-Release-Stable-Bullseye-arm64
BBN Marine Linux OS for Raspberry Pi
2022-12-21-Release-Stable-Bullseye-arm64
Stable Release based on Bullseye (Long Term Support)
64-bit, Bullseye
Changes:
- Fixes in PC-NavTex
- Few regular OS updates
- Few documentation updates
Download from:
https://cloudsmith.io/~bbn-projects/repos/bbn-repo/packages/?q=lysmarine-bbn-bullseye
Getting Started Guide: https://bareboat-necessities.github.io/my-bareboat/bareboat-os.html
Or you can use this bash script below to download it (faster) from github:
cpuArch="arm64"
zipName="lysmarine-bbn-bullseye_2022-12-21-raspios-${cpuArch}.img.xz"
imageSource="https://github.com/bareboat-necessities/lysmarine_gen/releases/download/v2022-12-21/${zipName}"
# Download the official image
echo "Downloading official image from internet."
myCache=.
prefix=$myCache/$zipName
{
echo curl --progress-bar -k -L -o $prefix.part0 $imageSource.part0
echo curl --progress-bar -k -L -o $prefix.part1 $imageSource.part1
echo curl --progress-bar -k -L -o $prefix.part2 $imageSource.part2
echo curl --progress-bar -k -L -o $prefix.part3 $imageSource.part3
echo curl --progress-bar -k -L -o $prefix.part4 $imageSource.part4
echo curl --progress-bar -k -L -o $prefix.part5 $imageSource.part5
} | xargs -I CMD -P 6 bash -c CMD
echo "Merging chunks..."
cat $prefix.part? > $myCache/$zipName