树莓派3b安装ubuntu
1 下载ubuntu镜像
2 下载树莓派镜像烧录工具
https://downloads.raspberrypi.org/imager/imager_1.8.5.exe
3 下载分区管理工具diskgenius
4 烧录系统
删除TF卡所有分区分区,然后快速分区
使用烧录工具烧录系统
默认用户名不能为root
5 diskgenius扩容卷/
6 连接键盘显示器开机
用户名为配置项
用户名 ubuntu
密码 ubuntu
7 启用root
sudo passwd root
8 连接网线 更改配置
ip addr
cd /etc/netplan
vim 50-cloud-init.yaml
注意引号和空格
network:
version: 2
renderer: networkd
ethernets:
eth0:
dhcp4: true
match:
macaddress: b8:27:eb:c6:94:8f
set-name: eth0
wifis:
wlan0:
dhcp4: true
access-points:
"wifi的ssid":
password: "wifi密码"
9 启用网卡并重启
netplan apply
ip link set eth0 up
ip link set wlan0 up
reboot
如果不能正常连wifi
连接网线
apt update
apt upgrade
如果upgrade报错
ps -eaf |grep pat
lsof /var/lib/........
apt upgrade
10 屏幕
cd /home
sudo rm -rf LCD-show-ubuntu
git clone https://github.com/lcdwiki/LCD-show-ubuntu.git
chmod -R 755 LCD-show-ubuntu
cd LCD-show-ubuntu/
In case of 3.5inch RPi Display(MPI3501)
sudo ./LCD35-show
11 检查语言环境
locale -a
apt-get install -y language-pack-zh-hans language-pack-zh-hans-base
update-locale LANG=zh_CN.utf-8
评论已关闭