After Flashing — First Steps

Post-flash setup: SSH, networking, package management, user config
Post Reply
felix
Site Admin
Posts: 15
Joined: Sat Oct 04, 2025 4:48 pm

After Flashing — First Steps

Post by felix »

After Flashing — First Steps

Congratulations on flashing your device! Here is what to do next.

Connecting to Your Device

Option A: USB (recommended for first setup)
Plug the device into your PC via USB. It will appear as a USB Ethernet adapter (RNDIS). Connect via SSH:

Code: Select all

ssh user@192.168.200.1
Default password: 1

Option B: WiFi
The device creates a WiFi hotspot with SSID depends on the build. Connect to it, then:

Code: Select all

ssh user@192.168.100.1
Step 1: Change the Default Password!
This is critical for security, especially if the WiFi hotspot is active:

Code: Select all

passwd
Step 2: Update Packages
Make sure you have internet connectivity (via LTE or shared USB), then:

Code: Select all

sudo apt update && sudo apt upgrade
Step 3: Set Your Timezone

Code: Select all

sudo timedatectl set-timezone Europe/Berlin
Replace Europe/Berlin with your timezone. List available zones with:

Code: Select all

timedatectl list-timezones
Step 4: Enable LTE (if you have a SIM card)

Code: Select all

sudo apt install modemmanager
mmcli -L
mmcli -m 0 --simple-connect="apn=internet"
Replace internet with your carrier APN. Common European APNs:
  • Generic: internet
  • Vodafone DE: web.vodafone.de
  • Telekom DE: internet.telekom
  • o2 DE: internet
Step 5: Verify Everything Works

Code: Select all

# Check internet
ping -c 3 google.com

# Check disk space
df -h

# Check running services
systemctl list-units --type=service --state=running
You are all set! Check the other forums for LTE configuration, WiFi hotspot setup, and project ideas.
Post Reply