- https://www.raspberrypi.org/software/ 镜像写入程序
">下载 https://www.raspberrypi.org/software/ 镜像写入程序 - 下载 Ubuntu For Raspberry Pi
- ">使用自定义镜像选择下载的Ubuntu Server镜像
- ">插件SD卡并选中刚插入的SD卡
- ">烧录
- 修改IP
打开烧录好的SD,根目录下编辑 network-config 文件
原版 - 修改为(关闭DHCP,添加IP地址、网关、DNS)
- ">将烧录好的SD卡插入 Raspberry Pi
- ssh连接到 Raspberry Pi 指定IP地址
#默认账号 ubuntu
#默认密码 ubuntu - 第一次登录后会提示创建新密码,连续输入两次新密码即可。
- 编辑源地址
- vi编辑中快速删除多行内容
#1.先使用命令set number(或set nu)显示出行号(取消行号为set nu!)
#2.使用1,8d(删除1到8行),1,$d(删除全部内容) - 添加源地址
- 重启 Raspberry Pi
- 修改时区为上海
- 更新系统
- 安装桌面环境 (可选)
下载 https://www.raspberrypi.org/software/ 镜像写入程序
下载 Ubuntu For Raspberry Pi
https://ubuntu.com/download/raspberry-pi/thank-you?version=20.04.2&architecture=server-arm64+raspi
使用自定义镜像选择下载的Ubuntu Server镜像
插件SD卡并选中刚插入的SD卡
烧录
修改IP
打开烧录好的SD,根目录下编辑 network-config 文件
原版
version: 2
ethernets:
eth0:
dhcp4: true
optional: true
修改为(关闭DHCP,添加IP地址、网关、DNS)
version: 2
ethernets:
eth0:
dhcp4: false
optional: true
addresses:
- 10.0.0.11/24
gateway4: 10.0.0.253
nameservers:
addresses: [10.0.0.253,114.114.114.114]
将烧录好的SD卡插入 Raspberry Pi
ssh连接到 Raspberry Pi 指定IP地址
#默认账号 ubuntu
#默认密码 ubuntu
第一次登录后会提示创建新密码,连续输入两次新密码即可。
编辑源地址
sudo cp -ra /etc/apt/sources.list /etc/apt/sources.list.bak #备份源文件
sudo vim /etc/apt/sources.list #编辑源文件
#注释之前的源
vi编辑中快速删除多行内容
#1.先使用命令set number(或set nu)显示出行号(取消行号为set nu!)
#2.使用1,8d(删除1到8行),1,$d(删除全部内容)
添加源地址
#树莓派阿里源
deb http://mirrors.aliyun.com/ubuntu-ports/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu-ports/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu-ports/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu-ports/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu-ports/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu-ports/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu-ports/ focal-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu-ports/ focal-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu-ports/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu-ports/ focal-backports main restricted universe multiverse
重启 Raspberry Pi
sudo reboot
修改时区为上海
sudo dpkg-reconfigure tzdata
更新系统
#一键更新脚本
sudo apt update && sudo apt upgrade && sudo apt dist-upgrade && sudo apt clean
sudo apt update
sudo apt upgrade
安装桌面环境 (可选)
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时候重启
如果是通过shutdown命令设置重启的话,可以用shutdown -c命令取消重启
关机命令 :
1、sudo halt 立刻关机(一般加-p 关闭电源)
2、sudo poweroff 立刻关机
3、sudo shutdown -h now 立刻关机
4、sudo shutdown -h 10 10分钟后自动关机
如果是通过shutdown命令设置关机的话,可以用shutdown -c命令取消关机