PiKVM Setup Script for Pi Zero 2W
bin | ||
lib/waveshare_epd | ||
install.sh | ||
README.md |
PiKVM - Pi Zero 2 W
The official PiKVM is expensive so I decided take build my own & add some features in the process:
- Static MAC addresses to fix IP changes on reboot while using DHCP
- Small "USB dongle" form-factor with minimal connections
- Creates access point when network connection is lost for easy configuration
- Ethernet connection for wired networks
- E-ink display for showing network information
- Setup wireguard by adding a
wg0.conf
file to the boot partion to create a jumpbox
Hardware
Assembly
- Cut the head off a USB cable & solder it to the debug pads on the back of the Pi; extend to the right (Opposite the SD card)
- Connect HDMI/CSI-2 module via short ribbon cable (~40 mm); fold over and glue to back of board alighting with the SD card
- Wire the Ethernet/SPI module onto SPI chanel 0
- Connect E-Ink display via side pins to SPI channel 1
Install
- Flash SD card with latest PiKVM image using the Raspberry Pi Imager
- Edit
/boot/config.txt
to include:
dtoverlay=spi=on
- Edit
/boot/pikvm.txt
to include your WiFi credentials for initial configuration:
FIRST_BOOT=1
WIFI_ESSID="wifi_name"
WIFI_PASSWD="wifi_pass"
- Insert SD card into Pi, connect an HDMI cable to the PI HDMI output (not the added module), connect the USB port to power
- After statup, open the IP address displayed in your browser & use
admin/admin
to login - Open the console, login as root & run the install script:
$ su -
**Enter password: root**
# curl https://git.zakscode.com/ztimson/PiKVM/raw/branch/master/install.sh | bash