= Basic Info =
A distro based on Alpine Linux. [[ https://wiki.postmarketos.org/wiki/OpenRC | Default init system is OpenRC]] (that page desperately needs editing though).
= Fixes and setups =
== Man pages missing ==
It doesn't come with `man` installed, you need `man-pages` and `mandoc` for that I think? And then you may still need to run some foul invocation just[[ https://georgegarside.com/blog/technology/alpine-linux-install-all-man-pages/ | to install all the darned missing man pages]]:
```
apk list -I |
sed -rn '/-doc/! s/([a-z-]+[a-z]).*/\1/p' |
awk '{ print system("apk info \""$1"-doc\" > /dev/null") == 0 ? $1 "-doc" : "" }' |
xargs apk add
```