Raspberry Pi 4B builds pagoda Linux panel

Raspberry Pi 4B builds pagoda Linux panel

Tip: The Raspberry Pi used this time is 4B 4GB. The system used is Ubuntu 2004 LTS. Only this version has been tested.



1. Raspberry Pi installation system

1. Download the toolkit and install

Download toolkit link: the download address is
to install the flashing mirror after the download is complete. As shown in the figure below:
Prompt for successful programming
Note: The first option selects the last custom image and path, the second option selects the memory card to be flashed, and then click the third button to start flashing, which will lose the original memory card Data, please make a data backup.

2. Perform wifi configuration

Note: If you use a wired connection, you can skip this step and
open the boot disk on the hard disk, change the network-config file in the boot disk, and modify it as follows

version: 2
ethernets:
  eth0:
    dhcp4: true
    optional: true
wifis:
  wlan0:
    dhcp4: true
    optional: true
    access-points:
      "你的wifi名称":
      password: "你的wifi密码"

3. Start the Raspberry Pi

Insert the storage card into the Raspberry Pi, turn on the power, and start the Raspberry Pi. Later, you will see the Raspberry Pi connected to the Internet on the router client. And record the ip address.
Note: If there is no network, you can connect the Raspberry Pi with a network cable to connect to the network, and then log in with SSH to configure the network. Refer to this article for details


Two, the basic settings of the Ubuntu system

1. Log in to the system

Use SSH to connect,

默认用户名: "ubuntu" 默认密码:"ubuntu"

The first login will let you change your password, after changing the password, it will restart directly, waiting for the restart to complete

2. Common settings of Raspberry Pi

Modify the root user password (just enter the password twice and confirm it)

sudo passwd root

Set the Raspberry Pi time zone (select Asia-Shanghai-and then confirm)

sudo dpkg-reconfigure tzdata

Modify software source

sudo vim /etc/apt/sources.list

Note: You can refer to other tutorials for the modification method. The most convenient way is to change the domain name of ubuntu to the domain name of Alibaba Cloud or Tsinghua Yuan, so that there will be no errors due to different versions. It is recommended to use my method. The domain name of Alibaba Cloud is given below.

http://mirrors.aliyun.com

Change the source successfully enough to update, the update command is as follows

sudo apt update

3. Install the pagoda linux panel

To install this panel, switch to the root user and perform the following steps

  1. First install make, the code is as follows
apt-get install make

The reason for installing make is that if you do not install this, you will get an error if you install the pagoda directly.

  1. Install the pagoda panel.
    Enter the pagoda official website and select the linux panel and find the corresponding command. This time it is the ubuntu version. It is currently updated to version 7.4.5. The command is as follows
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh

Then wait for the installation to complete

Guess you like

Origin blog.csdn.net/qq_25589859/article/details/109744683