Chainedbox L1 Pro - ROM ophub

Armbian is a lightweight Linux system specially built for ARM chips based on Debian/Ubuntu. The Armbian system is lean, clean, and 100% compatible with and inherits the features and rich software ecosystem of the Debian/Ubuntu system.

Armbian is a lightweight Linux system specially built for ARM chips based on Debian/Ubuntu. The Armbian system is lean, clean, and 100% compatible with and inherits the features and rich software ecosystem of the Debian/Ubuntu system. It can run securely and stably in TF/SD/USB and the device’s eMMC. This project preserves the integrity of the official Armbian system and further expands its usage on devices such as TV boxes that are not officially supported. It adds some convenient operation commands. Now, you can replace the Android TV system on your TV box with the Armbian system, turning it into a powerful server.

This project relies on many contributors to build the Armbian system for Amlogic, Rockchip, and Allwinner boxes, supports writing to eMMC for use, supports updating the kernel and other features.

1. ophub/amlogic-s9xxx-armbian

Actually, I haven't used the L1 Pro for a long time because I'm running unRAID, which meets all my requirements.

Recently, I’ve been browsing VoZ and chatting with some old friends who are using L1 Pro like ePubc / ppptran, and I found out that they are all using this new ROM version.

Download link for the ROM: ophub/amlogic-s9xxx-armbian

Make sure to choose the correct ROM for Chainedbox.

l1-ophub-chained.jpg

2. Mount HDD

Step 1: Identify and reformat the HDD to ext4

 1root@L1Pro:~# lsblk 
 2NAME         MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
 3sda            8:0    0   3.7T  0 disk /srv/data
 4mmcblk1      179:0    0   7.3G  0 disk
 5└─mmcblk1p1  179:1    0   7.1G  0 part /
 6mmcblk1boot0 179:32   0     4M  1 disk
 7mmcblk1boot1 179:64   0     4M  1 disk
 8zram0        253:0    0    50M  0 disk /var/log
 9zram1        253:1    0 993.4M  0 disk [SWAP]
10root@L1Pro:~# sudo mkfs.ext4 /dev/sda

Step 2: Identify the UUID of the HDD

1root@L1Pro:~# blkid
2/dev/mmcblk1p1: UUID="af28ddcd-74b1-4462-8f21-b04f58ffa523" TYPE="ext4" PARTUUID="802dc548-01"
3/dev/zram0: LABEL="log2ram" UUID="47280db6-6f24-4c16-b6a7-5c5a2d5bc784" TYPE="ext4"
4/dev/mmcblk1: PTUUID="802dc548" PTTYPE="dos"
5/dev/sda: LABEL="data" UUID="5ad2cad0-b929-4747-9f22-82511feb102a" TYPE="ext4"
6/dev/zram1: UUID="5bd70bba-4423-4b51-aaf9-d46ef0b23333" TYPE="swap"

Bước 3: Add script into fstab

1root@L1Pro:~# nano /etc/fstab
2UUID=5ad2cad0-b929-4747-9f22-82511feb102a /srv/data/ ext4 defaults,nofail 0 2

l1-fstab.jpg