First Boot
Boot Steps
- Insert the flashed MicroSD card into the board's SD card slot
- Connect an HDMI display (optional)
- Connect an Ethernet cable or USB WiFi adapter
- Plug in the 12V power supply — the system boots automatically
Default Credentials
| OS | Username | Password |
|---|---|---|
| Ubuntu | pi | myproduct |
| Debian | root | myproduct |
Security Notice
After your first login, change the default password immediately:
passwd
SSH Connection
Once the system is running, connect via SSH:
# Find the device IP (via router admin page or nmap)
nmap -sn 192.168.1.0/24
# SSH connect
ssh pi@192.168.1.xxx
System Update
After first boot, it is recommended to update the system:
sudo apt update && sudo apt upgrade -y