zsoltn
5
I went through the same frustration (and ended up in this thread). After some digging, I found the solution based on the official documentation:
and this thread:
Steps, assuming you use some Linux distro:
- install HA with the raspberry PI installer
- mount your boot partition (you can find it using
lsblk
), e.g.sudo mount /dev/sda1 /home/username/rpi-disk1/
- create config folder
sudo mkdir -p /home/username/rpi-disk1/CONFIG/network
- create my-network file
sudo nano /home/username/rpi-disk1/CONFIG/network/my-network
with content:
[connection]
id=my-network
uuid=<RANDOM-UUID>
type=802-11-wireless
[802-11-wireless]
mode=infrastructure
ssid=<WIFI-SSID>
[802-11-wireless-security]
auth-alg=open
key-mgmt=wpa-psk
psk=<WIFI-PASSWORD>
[ipv4]
method=auto
[ipv6]
addr-gen-mode=stable-privacy
method=auto
- unmount partition:
sudo umount /home/username/rpi-disk1
, and unmount the SD card
- after starting your PI, you will be able to access your HA server within 5 minutes
1 Like