https://github.com/nickgnd/lamponcino
Lamponcino 🫐 Automated setup for my RaspberryPi (+ Waveshare LCD + HifiBerry DAC) w/ Ansible
https://github.com/nickgnd/lamponcino
ansible hifiberry raspberry-pi raspotify waveshare
Last synced: 3 months ago
JSON representation
Lamponcino 🫐 Automated setup for my RaspberryPi (+ Waveshare LCD + HifiBerry DAC) w/ Ansible
- Host: GitHub
- URL: https://github.com/nickgnd/lamponcino
- Owner: nickgnd
- Created: 2023-07-04T20:36:44.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-04T21:39:08.000Z (about 3 years ago)
- Last Synced: 2026-02-18T01:41:13.542Z (5 months ago)
- Topics: ansible, hifiberry, raspberry-pi, raspotify, waveshare
- Language: Shell
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lamponcino
A proper README will come, for the moment some fragmented information below.
## Prepare Raspberry Pi
- Download the Raspberry Imager and install the **desktop** version
- Enable SSH ([guide](https://www.raspberrypi.org/documentation/remote-access/ssh/))
```bash
touch /Volumes/boot/ssh
```
- Configure WiFi
-
-
```bash
vim /Volumes/boot/vim wpa_supplicant.conf
```
And copy the following configuration inside, remember to update the values:
```text
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=De
network={
ssid=""
psk=""
scan_ssid=1
}
```
- Boot up your Pi
- add ssh key
```bash
ssh pi@raspberrypi.local
```
```bash
ssh-copy-id pi@raspberrypi.local
```
Or if you wanna use a custom key:
1. copy the key in the `~/.ssh/authorized_keys`
```bash
cat ~/.ssh/id_raspi_rsa.pub | ssh pi@raspberrypi.local 'mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys'
```
2. Add the new key locally to the agent
```bash
ssh-add ~/.ssh/id_raspi_rsa
```
- Stop the mechanical voice by following the welcome message
https://raspberrypi.stackexchange.com/questions/118911/how-do-i-stop-the-audio-message-to-install-the-screen-reader-press-control-alt
- Apparently, with the latest Buster version the waveshare is properly setup.
- Enabling VNC:
- follow the instruction: https://www.raspberrypi.org/documentation/remote-access/vnc/
- Potentially change host name [link](https://www.howtogeek.com/167195/how-to-change-your-raspberry-pi-or-other-linux-devices-hostname/)
- Find your IP [link](https://www.raspberrypi.org/documentation/remote-access/ip-address.md)
# Autologin
It should be the default, otherwise enable it manually