|
|
@@ -97,6 +97,48 @@ To get monitor resolution:
|
|
|
fbset -s
|
|
|
```
|
|
|
|
|
|
+### System Setup
|
|
|
+
|
|
|
+Make sure the following are installed:
|
|
|
+
|
|
|
+```
|
|
|
+apt install -y espeak mplayer
|
|
|
+```
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+Enable ssh server (for debugging and setup):
|
|
|
+
|
|
|
+```
|
|
|
+systemctl enable ssh
|
|
|
+systemctl start ssh
|
|
|
+```
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+Run `raspi-config` and select option `4` for the screen (640x480 @ 60Hz):
|
|
|
+
|
|
|
+```
|
|
|
+raspi-config
|
|
|
+```
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+Make sure to manually set volume on the waveshare screen (default is set at 50) from the buttons provided on the left.
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+Remove `libreoffice` to free up space (around 0.5Gb):
|
|
|
+
|
|
|
+```
|
|
|
+apt remove -y libreoffice libreoffice-base-core libreoffice-common libreoffice-core libreoffice-help-common libreoffice-help-en-gb libreoffice-help-en-us libreoffice-l10n-en-gb libreoffice-style-colibre libreoffice-style-tango
|
|
|
+apt autoremove -y --purge
|
|
|
+
|
|
|
+```
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
### Other References
|
|
|
|
|
|
* [raspberrypi.org: cmdline.txt](https://www.raspberrypi.org/documentation/configuration/cmdline-txt.md)
|