Bare-Metal MiniPC Installation
Installing ActonOS directly on bare-metal hardware transforms an x86_64 MiniPC into a dedicated, appliance-grade AI agent server with immutable system security, kernel-level namespace sandboxing (Bubblewrap + Cgroups v2), and self-healing OTA updates.
Step 1: Download the ActonOS ISOβ
Download the latest official ISO release from the ActonOS repository:
- Latest Release:
ActonOS-v0.1-amd64.iso - SHA-256 Checksum: Verify integrity before writing to media.
# Example verification in terminal
sha256sum -c ActonOS-v0.1-amd64.iso.sha256
Step 2: Flash the ISO to a USB Driveβ
You will need a USB flash drive with at least 4 GB capacity.
Option A: Using Rufus (Windows)β
- Insert your USB flash drive.
- Download and launch Rufus.
- Select your USB drive under Device.
- Click Select and choose
ActonOS-v0.1-amd64.iso. - Under Partition scheme, select GPT and Target system UEFI (non-CSM).
- Click START and select Write in DD Image mode when prompted.
Option B: Using BalenaEtcher (macOS, Windows, Linux)β
- Download and open BalenaEtcher.
- Click Flash from file and select
ActonOS-v0.1-amd64.iso. - Select your target USB drive.
- Click Flash! and wait for verification to complete.
Option C: Using dd Command (Linux / macOS CLI)β
# Identify your USB drive identifier (e.g., /dev/sdb or /dev/sdc)
lsblk
# Flash the image directly (replace /dev/sdX with your actual device)
sudo dd if=ActonOS-v0.1-amd64.iso of=/dev/sdX bs=4M status=progress conv=fsync
Step 3: Boot the MiniPC and Installβ
- Insert the flashed USB drive into an available USB 3.0 port on your MiniPC.
- Connect an Ethernet cable (optional, recommended) and power on the device.
- Immediately press the BIOS boot menu key during power-up:
- Intel N100 / Beelink / Minisforum: Usually
F7orF11(orDel/Escfor BIOS setup). - ASUS / ASRock: Usually
F8orF11. - Lenovo / HP / Dell: Usually
F12.
- Intel N100 / Beelink / Minisforum: Usually
- Select the UEFI: USB Flash Drive entry from the boot menu.
- The installer will boot into the Automated Headless Installer.
Automated Disk Partitioning
The ActonOS automated installer will initialize the primary internal disk with the following layout:
- Partition 1 (ESP):
512 MBFAT32 UEFI Bootloader (/boot/efi). - Partition 2 (System Root):
4 GBExt4 Read-Only Immutable Base OS (/). - Partition 3 (User Data): Remaining space Ext4 Read-Write Persistent Storage (
/data). Warning: All existing data on the internal target disk will be formatted.
- The installation runs unattended for approximately 90β120 seconds.
- Upon completion, the MiniPC will beep (or display a success screen), eject the USB drive, and reboot into ActonOS.
Step 4: First-Boot Verificationβ
Once ActonOS boots up:
- If an Ethernet cable is connected with DHCP, ActonOS will automatically obtain a LAN IP and advertise
http://acton.localvia mDNS. - If no wired network is detected within 60 seconds, ActonOS automatically activates its Zero-Config Wi-Fi Hotspot (
ActonOS-XXXX) for onboarding.
Proceed to the Zero-Config Onboarding Guide to complete initial setup.