下载 https://www.raspberrypi.org/software/ 镜像写入程序
image.png

下载 Ubuntu For Raspberry Pi

https://ubuntu.com/download/raspberry-pi/thank-you?version=20.04.2&architecture=server-arm64+raspi

使用自定义镜像选择下载的Ubuntu Server镜像
image.pngimage.png

插件SD卡并选中刚插入的SD卡
image.png

烧录
image.png

修改IP
打开烧录好的SD,根目录下编辑 network-config 文件
原版

  1. version: 2
  2. ethernets:
  3. eth0:
  4. dhcp4: true
  5. optional: true

修改为(关闭DHCP,添加IP地址、网关、DNS)

  1. version: 2
  2. ethernets:
  3. eth0:
  4. dhcp4: false
  5. optional: true
  6. addresses:
  7. - 10.0.0.11/24
  8. gateway4: 10.0.0.253
  9. nameservers:
  10. addresses: [10.0.0.253,114.114.114.114]

将烧录好的SD卡插入 Raspberry Pi
image.png

ssh连接到 Raspberry Pi 指定IP地址
#默认账号 ubuntu
#默认密码 ubuntu

第一次登录后会提示创建新密码,连续输入两次新密码即可。

编辑源地址

  1. sudo cp -ra /etc/apt/sources.list /etc/apt/sources.list.bak #备份源文件
  2. sudo vim /etc/apt/sources.list #编辑源文件
  3. #注释之前的源

vi编辑中快速删除多行内容
#1.先使用命令set number(或set nu)显示出行号(取消行号为set nu!)
#2.使用1,8d(删除1到8行),1,$d(删除全部内容)

添加源地址

  1. #树莓派阿里源
  2. deb http://mirrors.aliyun.com/ubuntu-ports/ focal main restricted universe multiverse
  3. deb-src http://mirrors.aliyun.com/ubuntu-ports/ focal main restricted universe multiverse
  4. deb http://mirrors.aliyun.com/ubuntu-ports/ focal-security main restricted universe multiverse
  5. deb-src http://mirrors.aliyun.com/ubuntu-ports/ focal-security main restricted universe multiverse
  6. deb http://mirrors.aliyun.com/ubuntu-ports/ focal-updates main restricted universe multiverse
  7. deb-src http://mirrors.aliyun.com/ubuntu-ports/ focal-updates main restricted universe multiverse
  8. deb http://mirrors.aliyun.com/ubuntu-ports/ focal-proposed main restricted universe multiverse
  9. deb-src http://mirrors.aliyun.com/ubuntu-ports/ focal-proposed main restricted universe multiverse
  10. deb http://mirrors.aliyun.com/ubuntu-ports/ focal-backports main restricted universe multiverse
  11. deb-src http://mirrors.aliyun.com/ubuntu-ports/ focal-backports main restricted universe multiverse

重启 Raspberry Pi

  1. sudo reboot

修改时区为上海

  1. sudo dpkg-reconfigure tzdata

image.png
image.png

更新系统

  1. #一键更新脚本
  2. sudo apt update && sudo apt upgrade && sudo apt dist-upgrade && sudo apt clean
  3. sudo apt update
  4. sudo apt upgrade

安装桌面环境 (可选)

  1. sudo apt install ubuntu-desktop

重启命令 :
1、sudo reboot
2、sudo shutdown -r now 立刻重启
3、sudo shutdown -r 10 过10分钟自动重启
4、sudo shutdown -r 20:35 在时间为20:35时候重启

  1. 如果是通过shutdown命令设置重启的话,可以用shutdown -c命令取消重启

关机命令 :
1、sudo halt 立刻关机(一般加-p 关闭电源)
2、sudo poweroff 立刻关机
3、sudo shutdown -h now 立刻关机
4、sudo shutdown -h 10 10分钟后自动关机

  1. 如果是通过shutdown命令设置关机的话,可以用shutdown -c命令取消关机