Step 1: Prepare the Necessary
- Orange Pi Zero LTS board.
- A microSD card (at least 8GB; a Class 10 or higher is recommended).
- microSD card reader to connect the card to your computer.
- A power supply compatible with the Orange Pi Zero LTS (5V/2A recommended).
- Ethernet cable (optional, for headless setup).
- A computer for downloading and flashing the Armbian OS.
Step 2: Download the Armbian OS
- Go to the official Armbian website: https://www.armbian.com.
- Search for Orange Pi Zero LTS in the supported devices list.
- Download the recommended Armbian image (choose a version based on your preference: CLI-only or desktop).
- Example:
Armbian_XX_OrangePiZero_LTS_*.img.xz
.
Step 3: Write the Armbian Image to the microSD Card
- Insert the microSD card into your computer.
- Download and install a disk imaging tool, such as:
- Flash the Armbian image:
- Open the imaging tool.
- Select the downloaded
.img.xz
file.
- Choose your microSD card as the target.
- Click Flash or Start to write the image.
- Wait until the process completes, then safely eject the microSD card.
Step 4: Insert the microSD Card into the Orange Pi Zero LTS
- Insert the prepared microSD card into the Orange Pi Zero LTS.
- Connect the power supply to the board to power it on.
Step 5: Access the Orange Pi Zero LTS
Option 1: Via SSH (Headless Setup)
- Connect the Orange Pi Zero LTS to your network using an Ethernet cable.
- Discover its IP address using:
- Your router’s admin panel.
- Tools like Advanced IP Scanner or Fing (see the section in the previous guide).
- Use an SSH client like PuTTY:
- Hostname: The IP address of the Orange Pi.
- Port:
22
.
- Username:
root
.
- Password:
1234
(default).
- Upon first login, you’ll be prompted to change the root password and create a new user.
Option 2: Connect via Serial Console (Optional)
- Use the debug UART pins on the Orange Pi Zero LTS to connect via a USB-to-serial adapter.
- Access the serial console using a terminal tool like minicom or PuTTY.
Step 6: Initial Configuration
- On first boot, complete the initial setup:
- Set a new root password.
- Create a non-root user.
- Configure timezone, language, and other settings.
- Update the system
sudo apt update && sudo apt upgrade -y