Skip to content

Getting Started

This tutorial is designed to help developers quickly get started with the A8550MA1 AI Compute Platform.

Physical Product

Board with fan

System Check

APLUX Full Image (factory default system)

The board comes pre-installed with APLUX Full Image (Ubuntu 22.04). After powering with a 12 V power adapter, the board will automatically start the system.

  • Power-on process: POWER LED solid red, fan begins spinning
  • System ready: STATUS LED solid green

Login Methods

Network Configuration

Tip

Before configuring wired network, ensure the Ethernet cable is connected.
Before using Wi-Fi, ensure the device antennas are properly attached.

After the device starts for the first time, we recommend configuring the network connection first:

On a Windows PC, press Win+R, type cmd in the popup window to open a terminal, then enter the following commands to access the system:

bash
# Obtain device root privileges
adb root

# Enter the device terminal shell
adb shell

Wired Network (Default DHCP)

  • Connect the Ethernet cable to the WAN port; the system defaults to DHCP automatic IP acquisition:
bash
ifconfig eth0

Wired Network (Static IP)

  • To configure a static IP, first obtain the connection name:
bash
nmcli -g GENERAL.CONNECTION device show eth0
  • Configure static IP (replace IP/Gateway/DNS with actual values):
bash
nmcli connection modify 'connection_name_from_previous_step' ipv4.method manual ipv4.addresses 192.168.1.231/24 ipv4.gateway 192.168.1.1 ipv4.dns '114.114.114.114'
  • Apply network configuration:
bash
nmcli device reapply eth0

Tip

The IP address and subnet mask shown here are for reference only. Configure them according to your actual network environment.

Revert to Dynamic IP

  • Revert from static IP to DHCP:
bash
nmcli connection modify 'connection_name' ipv4.method auto ipv4.addresses '' ipv4.gateway '' ipv4.dns ''
bash
nmcli device reapply eth0

Wi-Fi Network

Full Image can be configured via the desktop environment. Base Image can be configured via the command line:

  • View IP address
bash
ip addr show
  • Wi-Fi command-line configuration
bash
nmcli dev wifi connect "SSID" password "PASSWORD"