After Flashing — First Steps
Posted: Tue Feb 17, 2026 7:19 pm
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:
Default password: 1
Option B: WiFi
The device creates a WiFi hotspot with SSID depends on the build. Connect to it, then:
Step 1: Change the Default Password!
This is critical for security, especially if the WiFi hotspot is active:
Step 2: Update Packages
Make sure you have internet connectivity (via LTE or shared USB), then:
Step 3: Set Your Timezone
Replace Europe/Berlin with your timezone. List available zones with:
Step 4: Enable LTE (if you have a SIM card)
Replace internet with your carrier APN. Common European APNs:
You are all set! Check the other forums for LTE configuration, WiFi hotspot setup, and project ideas.
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.1Option 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.1This is critical for security, especially if the WiFi hotspot is active:
Code: Select all
passwdMake sure you have internet connectivity (via LTE or shared USB), then:
Code: Select all
sudo apt update && sudo apt upgradeCode: Select all
sudo timedatectl set-timezone Europe/BerlinCode: Select all
timedatectl list-timezonesCode: Select all
sudo apt install modemmanager
mmcli -L
mmcli -m 0 --simple-connect="apn=internet"- Generic: internet
- Vodafone DE: web.vodafone.de
- Telekom DE: internet.telekom
- o2 DE: internet
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