【笔记】玩客云刷入Armbian

Preface

OneCloud is flashed into Armbian via line brushing.

Preparation

Flashing

  1. 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.

  2. Open Amlogic USB Burning Tool burning tool -> File -> Import Burning Package

  1. Select the burning package Armbian_23.02.0-trunk_Onecloud_bullseye_edge_6.2.0_minimal.burn.img.xz -> Open

  1. After successful import, the bottom of the software will display the path of the burning package file -> Start

  1. The first flashing requires short circuiting, and the second and subsequent times can hold down the RESET key and power on.

  2. Wait for the progress bar to complete and click stop.

  1. 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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Welcome to ARMBIAN! 

Documentation: https://docs.armbian.com | Community: https://forum.armbian.com

IP address: 192.168.1.1

Create root password: # Enter the new root user password here
Repeat root password: # Enter the new root user password here

Support status: community support (looking for a dedicated maintainer)

Shell: BASH

Creating a new user account. Press <Ctrl-C> to abort

Please provide a username (eg. your first name): ^C # Interrupt creating a new normal user here
Disabling user account creation procedure

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

Flashing

  1. 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.

  2. Open the Amlogic USB Burning Tool burning tool -> File -> Import burning package

  1. Select the burning package Armbian_23.02.0-trunk_Onecloud_bullseye_edge_6.2.0_minimal.burn.img.xz -> Open

  1. After successful importing, the file path of the burning package will be displayed at the bottom of the software -> Start

  1. For the first flash, short-circuiting is required. For the second or subsequent times, you can press the RESET key and power it on.

  2. Wait for the progress bar to complete, then click Stop

  1. 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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Welcome to ARMBIAN! 

Documentation: https://docs.armbian.com | Community: https://forum.armbian.com

IP address: 192.168.1.1

Create root password: # Enter the new root user password here
Repeat root password: # Enter the new root user password here

Support status: community support (looking for a dedicated maintainer)

Shell: BASH

Creating a new user account. Press <Ctrl-C> to abort

Please provide a username (eg. your first name): ^C # Interrupt here to create a new normal user
Disabling user account creation procedure

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

Finished

References

哔哩哔哩——乌客wuke