这次我用的是树莓派4B,ARM 4核架构,运行内存4G,1T机械硬盘作为存储介质,这个配置已经达到了官方的建议要求。
官方要求:内存要求最低128MB,推荐512MB以上,纯面板约占系统10MB内存
树莓派运行的是树莓派爱好者基地的ubuntu64位plus++版本的系统。
将树莓派上电,并使用网线或者WiFi连接到路由器,使得树莓派可以访问外网。使用Xshell或其他支持SSH管理的工具登录到树莓派。

镜像下载

OPENFANS-Debian-Buster-Aarch64-ext4-v2021-2.0-U6-Release-plus++.img

烧录安装

往期文章

树莓派挂载固态硬盘安装系统并入门设置 - 史上最详细版(原创)

配置WI-FI

修改 /boot/wpa_supplicant.conf 文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
### To use this file, you should run command "systemctl disable network-manager" and reboot system.
### (Do not uncomment this line and above!) ###
### 除第一行外,第一行可以删除,去掉以下每行只有单个“#”的注释符号,两个“#”注释符号的行位说明内容,请不要修改
### 中文内容是注释,删除或不要取消前面的“#”符号

### country是设置无线的国家地区,CN是中国
#country=CN
#ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
#update_config=1

### 下面的 "WIFI 1" 、"WIFI 2" 代表多个无线网络的设置
### 除非你要设置多个无线网络,否则只需要设置 "WIFI 1" 这部分的设置即可
### WIFI 1 (Do not uncomment this line!)

### 除了取消需要生效的内容注释以外,以下仅需要修改 "ssid" 和 "psk" 后面引号内的内容即可
### ssid是你的无线Wifi名称,psk是你无线Wifi的密码
#network={
# ssid="your-wifi1-ssid"
# psk="wifi1-password"
# priority=1
# id_str="wifi-1"
#}


### WIFI 2 (Do not uncomment this line!)

#network={
# ssid="your-wifi2-ssid"
# psk="wifi2-password"
# priority=2
# id_str="wifi-2"
#}

修改密码

1
2
3
sudo passwd user(user 是对应的用户名)
# 或者进入到用户
passwd

安装宝塔

宝塔安装前须知行

1
2
3
4
5
sudo apt-get install make
#
sudo apt-get install lua5.2
# 然后装宝塔
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh