aspauldingcode / .dotfiles

A Universal .dotfiles Configuration with Nix Flakes - over-engineered by Alex Spaulding.
2 stars 0 forks source link

box64 userspace emulation on postmarketos #133

Open aspauldingcode opened 3 months ago

aspauldingcode commented 3 months ago

Note to anyone who wants to build it under postmarketOS (or Alpine).

Just create a debian chroot

Install debootstrap, which will allow you to 'install' the base Debian system apk add debootstrap

Install Debian stable to /debian debootstrap stable /debian http://deb.debian.org/debian/

Chroot into it chroot /debian /bin/bash

Create a user useradd -m -s $(which bash) debianuser # can name debianuser whatever you'd like

Install build dependencies apt install git cmake python3

Switch to your new user su - debianuser

Then clone the repo and follow the build instructions.