【笔记】玩客云刷入Armbian
Preface
OneCloud is flashed into Armbian via line brushing.
Preparation
- Amlogic USB Burning Tool v2.1.6.8
- Armbian_23.02.0-trunk_Onecloud_bullseye_edge_6.2.0_minimal.burn.img.xz
Flashing
USB double male data cable, one end is connected to the USB port of the Windows computer, and the other end is connected to the USB port near the HDMI interface.
Open
Amlogic USB Burning Tool
burning tool ->File
->Import Burning Package
- Select the burning package
Armbian_23.02.0-trunk_Onecloud_bullseye_edge_6.2.0_minimal.burn.img.xz
->Open
- After successful import, the bottom of the software will display the path of the burning package file ->
Start
The first flashing requires short circuiting, and the second and subsequent times can hold down the
RESET
key and power on.Wait for the progress bar to complete and click stop.
- After the stop is completed, unplug the USB data cable and power on the OneCloud.
First Boot
- You can directly connect to OneCloud through SSH or connect OneCloud to the keyboard. Log in with the default username and password.
If the domain name fails to log in, replace it with the IP address. Please check the IP address of OneCloud in the intranet DHCP server.
username:
root
password:1234
1 | ssh root@onecloud |
- Change the root user password -> press
ctrl
+c
to interrupt and create a new normal user.
1 | Welcome to ARMBIAN! |
Modify Time Zone (Optional)
1 | cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime |
Install Docker
Before installing Docker, remember not to update the software with the command apt update && apt upgrade
.
Otherwise, the Docker service cannot be started after installation, and an error will occur: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
If you manually start the service with the command systemctl restart docker
, an error will occur: Failed to start Docker Application Container Engine.
By using the command journalctl -xe
to view the error log: The unit docker.socket has entered the 'failed' state with result 'service-start-limit-hit'.
The reason is unknown.
1 | apt install docker.io |
Completion
References
Bilibili - Wuke—
title: 【笔记】玩客云刷入Armbian
categories:
- null
tags:
- SoftRouting
sticky: 0
lang: en
date: 2023-09-10 15:29:03
Introduction
OneCloud is flashed into Armbian using the line brush method.
Preparation
- Amlogic USB Burning Tool v2.1.6.8
- Armbian_23.02.0-trunk_Onecloud_bullseye_edge_6.2.0_minimal.burn.img.xz
Flashing
Use a USB double-headed data cable, one end connected to the USB port of the Windows computer, and the other end connected to the USB port near the HDMI interface.
Open the
Amlogic USB Burning Tool
burning tool ->File
->Import burning package
- Select the burning package
Armbian_23.02.0-trunk_Onecloud_bullseye_edge_6.2.0_minimal.burn.img.xz
->Open
- After successful importing, the file path of the burning package will be displayed at the bottom of the software ->
Start
For the first flash, short-circuiting is required. For the second or subsequent times, you can press the
RESET
key and power it on.Wait for the progress bar to complete, then click
Stop
- After the stop is completed, unplug the USB data cable, and power on the OneCloud again.
First Boot
- You can connect to OneCloud directly through SSH or connect OneCloud to a keyboard. Log in with the default username and password.
If the domain name cannot be logged in, change it to the IP address. Please check the IP address of OneCloud on the internal DHCP server.
Username:
root
Password:1234
1 | ssh root@onecloud |
- Change the root user password ->
ctrl
+c
to interrupt and create a new normal user
1 | Welcome to ARMBIAN! |
Modify the Time Zone (Optional)
1 | cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime |
Install Docker
Before installing Docker, it is important not to update the software using the apt update && apt upgrade
command.
Otherwise, after installing Docker, the service will not be able to start, and an error will occur: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
If you manually start the service using the systemctl restart docker
command, an error will occur: Failed to start Docker Application Container Engine.
View the error log using the journalctl -xe
command: The unit docker.socket has entered the 'failed' state with result 'service-start-limit-hit'.
The reason is unknown.
1 | apt install docker.io |