Version 1 vs 4
Version 1 vs 4
Content Changes
Content Changes
[[ 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
```
= Basic Info =
A distro based on Alpine Linux. [[ https://wiki.postmarketos.org/wiki/OpenRC | Default init system was OpenRC]] (that page desperately needs editing though, and they're in the process of adopting systemd as a tier-1 choice and the default for some images).
= 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
```
== The Plasma Mobile keyboard is blindingly white ==
Last Keith checked it was still Maliit being used (originally developed for the Nokia N9!) but there's no longer themes for it, it just uses the QtQuickControls2 styling and then that isn't actually provided to it. Following https://github.com/maliit/keyboard/issues/174#issuecomment-1307825321 he tried just setting
```
lang=bash, name=/etc/environment
QT_QUICK_CONTROLS_STYLE=org.kde.desktop
```
Did it work?
[[ https://georgegarside.com/blog/technology/alpine-linux-install-all-man-pages/ | T= Basic Info =
A distro based on Alpine Linux. [[ https://wiki.postmarketos.org/wiki/OpenRC | Default init system was OpenRC]] (that page desperately needs editing though, and they're in the process of adopting systemd as a tier-1 choice and the default for some images).
= 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
```
== The Plasma Mobile keyboard is blindingly white ==
Last Keith checked it was still Maliit being used (originally developed for the Nokia N9!) but there's no longer themes for it, it just uses the QtQuickControls2 styling and then that isn't actually provided to it. Following https://github.com/maliit/keyboard/issues/174#issuecomment-1307825321 he tried just setting
```
lang=bash, name=/etc/environment
QT_QUICK_CONTROLS_STYLE=org.kde.desktop
```
Did it work?