Skip to content

First Boot

Boot Steps

  1. Insert the flashed MicroSD card into the board's SD card slot
  2. Connect an HDMI display (optional)
  3. Connect an Ethernet cable or USB WiFi adapter
  4. 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