树莓派ubuntu64位系统安装宝塔

December 09, 2023
测试
测试
测试
测试
3 分钟阅读

这次我用的是树莓派4B,ARM 4核架构,运行内存4G,1T机械硬盘作为存储介质,这个配置已经达到了官方的建议要求。

官方要求:内存要求最低128MB,推荐512MB以上,纯面板约占系统10MB内存

树莓派运行的是树莓派爱好者基地的ubuntu64位plus++版本的系统。

将树莓派上电,并使用网线或者WiFi连接到路由器,使得树莓派可以访问外网。使用Xshell或其他支持SSH管理的工具登录到树莓派。

镜像下载

https://pan.baidu.com/s/14-IIVJYjcbkshCZNz-RSIg?pwd=znji

烧录安装

往期文章 https://www.vvhan.com/shumeipai.html

配置WI-FI

修改 /boot/wpa_supplicant.conf 文件

## 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"
#}

修改密码

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

安装宝塔

宝塔安装前须知行

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

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多