Difference between revisions of "Pinebook Pro Installing Void Linux ARM"

From PINE64
Jump to navigation Jump to search
(Downloading and verifying the rootfs tarball)
(Extracting the root filesystem)
Line 3: Line 3:
This will not be a complete guide, as it borrows heavily on [[Installing Arch Linux ARM On The Pinebook Pro]], so read it first then come back here.
This will not be a complete guide, as it borrows heavily on [[Installing Arch Linux ARM On The Pinebook Pro]], so read it first then come back here.


From 1. to 2.1 you can do the same
Only the steps that are different are listed here.


== Downloading and verifying the rootfs tarball ==
=== Downloading and verifying the rootfs tarball ===


You can go to the Void linux [https://voidlinux.org/download/ download page], select the "arm" tab, and choose one of the aarch64 rootfs tarballs, either glibc or musl.
You can go to the Void linux [https://voidlinux.org/download/ download page], select the "arm" tab, and choose one of the aarch64 rootfs tarballs, either glibc or musl.
Line 18: Line 18:
  $ sha256sum -c --ignore-missing sha256sum.txt
  $ sha256sum -c --ignore-missing sha256sum.txt
  void-aarch64-musl-ROOTFS-20221001.tar.xz: OK
  void-aarch64-musl-ROOTFS-20221001.tar.xz: OK
=== Extracting and configuring the root filesystem ===
==== Extracting the root filesystem ====
# bsdtar -xpf void-aarch64-musl-ROOTFS-20221001.tar.xz -C /mnt

Revision as of 13:39, 21 November 2022

DISCLAIMER: This is Work In Progress, no warranty implied

This will not be a complete guide, as it borrows heavily on Installing Arch Linux ARM On The Pinebook Pro, so read it first then come back here.

Only the steps that are different are listed here.

Downloading and verifying the rootfs tarball

You can go to the Void linux download page, select the "arm" tab, and choose one of the aarch64 rootfs tarballs, either glibc or musl. How to check integrity of the downloaded file is explained on the same page, no need to reinstate that here.

Or use the following instructions (on debian):

$ wget https://repo-default.voidlinux.org/live/current/void-aarch64-musl-ROOTFS-20221001.tar.xz
$ wget https://repo-default.voidlinux.org/live/current/sha256sum.{txt,sig}
$ wget https://github.com/void-linux/void-packages/raw/master/srcpkgs/void-release-keys/files/void-release-20221001.pub
$ signify-openbsd -V -p void-release-20221001.pub -x sha256sum.sig -m sha256sum.txt
Signature Verified
$ sha256sum -c --ignore-missing sha256sum.txt
void-aarch64-musl-ROOTFS-20221001.tar.xz: OK

Extracting and configuring the root filesystem

Extracting the root filesystem

# bsdtar -xpf void-aarch64-musl-ROOTFS-20221001.tar.xz -C /mnt