Files
counter/README.md
2025-05-31 16:49:01 +02:00

37 lines
459 B
Markdown

# counter
## Preparation
Update:
```
apt update
apt upgrade
apt autoremove
```
Purge everything not required:
```
apt purge triggerhappy bluez wpasupplicant modemmanager avahi-daemon
apt autoremove
```
Disable Bluetooth and WiFi at boot, put these lines in `/boot/firmware/config.txt`:
```
dtoverlay=disable-wifi
dtoverlay=disable-bt
```
Install build chain and kernel headers:
```
apt install build-essential raspberrypi-kernel-headers git
```