Updated LicheePi4A (markdown)

Lauri Ojansivu 2023-06-21 04:08:15 +03:00
parent b563c808c7
commit d8eed51eab

@ -15,4 +15,21 @@ In this image, from top left:
At bottom:
- Full size HDMI, connected to my 43" TV, using 3840x2160 resolution at 60 Hz
Currently I'm typing to Firefox running on this LicheePi 4A, logged into Locals. Also compiling TSC https://secretchronicles.org/ and Godot.
Currently I'm typing to Firefox running on this LicheePi 4A, logged into Locals. Also compiling TSC https://secretchronicles.org/ and Godot.
## Chroot
Because internal 8 GB storage is too small to install packages, I am using external USB3 SSD drive where I add Chroot of newest Debian Sid RISC-V.
https://wiki.debian.org/chroot
Remount with exec and dev so I can install Chroot. As root:
```
apt -y install debootstrap
mkdir -p /media/sipeed/L500GB/debian
mount -i -o remount,exec,dev /media/sipeed/L500GB
debootstrap --no-check-gpg sid /media/sipeed/L500GB/debian http://ftp.ports.debian.org/debian-ports/
```