本文操作环境:笔记本、树莓派4b-4gb、24寸显示屏
本人也是网上看了很多教程,不免有相似之处
网盘连接
密码:px3l
这个就不用说了,或者后序补充
烧录系统完成后,进入PC端,查看system-boot盘,进去之后找到一个名为network-config的文件,其中代码段如下,进行修改,打开注释
wifis:
wlan0:
dhcp4: true
optional: true
access-points:
"Wifi-name":
password: "密码"
其中Wifi名字记得带上是双引号
第一次可能连接不上,重启即可
但是后序过程中,还是出现树莓派无法连接wifi,但是有时候又可以,所以树莓派还是不行啊
同样在system-boot盘下,有个config.txt文件,在末尾加入下面代码
framebuffer_width=1920
framebuffer_height=1080
hdmi_force_hotplug=1
hdmi_group=1
hdmi_mode=5
hdmi_ignore_edit=0xa5000080
上面完成后,就可以插入树莓派开机啦
在使用reboot关机时,会显示下面信息导致关机需要90s时间
A stop job is running for ..(xxxxxs,1min30s)
修改关机操作如下:
sudo vim /etc/systemd/system.conf
将下面两个参数修改成10s即可
DefaultTimeoutStartSec=10s
DefaultTimeoutStopSec=10s
然后使用下面命令保存设置
systemctl daemon-reload
首先将系统自带的source.list文件备份,然后使用vim打开该文件,
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
sudo vim /etc/apt/sources.list
vim编辑器,使用i/a/o进入插入模式,将原本文件中的内容删除或者#号注释,然后加入下列链接,然后按ESC退出插入模式,然后使用:wq,保存并退出vim编辑器(vim具体用法自己搜一下)
deb http://mirrors.aliyun.com/ubuntu-ports/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu-ports/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu-ports/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu-ports/ bionic-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu-ports/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu-ports/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu-ports/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu-ports/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu-ports/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu-ports/ bionic-backports main restricted universe multiverse
ubuntu后面要带上ports,不然更新失败,网上说针对树莓派得加ports
然后使用以下命令,刷新软件包和软件列表,并重启
sudo apt-get update
sudo apt-get upgrade
reboot
你说为什么不直接安装桌面呢,这一是因为我下载桌面版的太卡了,但是用server的,安装桌面之后还是很流畅;二是因为安装桌面出了好多奇怪问题
使用下列命令安装:
sudo apt-get install ubuntu-desktop
下载过程中会报一个错误,但是不要紧,它还有一个提示信息:xxxx–fix-missing,使用下面命令继续安装
sudo apt-get update --fix-missing
下载完成后重启,并输入:
sudo apt-get install ubuntu-desktop
等待下载完成,就可以使用桌面环境啦
startx
首先需要进入raspi-config,但此时输入会显示没有该命令,需要安装相应环境,建议使用远程登陆,比如虚拟机和PC端,具体方法见另外一篇文章
具体流程如下链接:
raspi-config配置