树莓派3b+安装系统记录

树莓派3b+安装系统记录

附上一些踩坑记录,供大家避坑。
一.下载准备:
1.下载树莓派操作系统:https://www.raspberrypi.com/software/operating-systems/
之前在别的帖子里找的下载链接过于老旧,小白的我找不到该下载哪款
注意,下载下来的后缀是.img那款,我下错过.iso
树莓派3b+安装系统记录_第1张图片
那么在此选择第二款1180MB的即可,普通下载会太慢,选torrent用迅雷下快很多。
2.下载格式化软件SDformatter:
树莓派3b+安装系统记录_第2张图片
网页拉最下面,点击accept即可下载
3.下载烧录软件win32diskimager:
稍作等待自动开始下载。
4.下载SSH客户端putty:用于远程控制,
树莓派3b+安装系统记录_第3张图片
选择32位即可。

二.开始安装:
1.格式化SD卡:将SD卡使用读卡u盘插入电脑后,使用SDformatter对SD卡进行格式化
树莓派3b+安装系统记录_第4张图片
网图,大致如此,不需要选中什么,直接点完成。
2.将.img写入SD卡:使用win32diskimager,浏览选项里找到前面在官网下载的.img文件,然后点击写入/write,大概几分钟就ok了。
3.创建SSH文件:在写入完成后就会进入boot盘,新建一个文本文档,把后缀.txt删了,重命名为SSH,这是为了后面远程控制树莓派做准备。
4.新建wpa_supplicant.conf文件,也是txt文档改后缀。在里边输入:

country=CN
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
	ssid=“想连的wifi名字”
	psk=“wifi密码”
	key_mgmt=WPA-PSK
	priority=1 
	}

5.修改config.txt文件
主要是修改被注释的部分
其中hdmi_group=2
hdmi_mode=58的具体数值参考https://shumeipai.nxez.com/2013/08/31/custom-display-resolution-raspberry-pie.html

# uncomment if you get no picture on HDMI for a default "safe" mode
#hdmi_safe=1

# uncomment this if your display has a black border of unused pixels visible
# and your display can output without overscan
disable_overscan=1

# uncomment the following to adjust overscan. Use positive numbers if console
# goes off screen, and negative if there is too much border
#overscan_left=16
#overscan_right=16
#overscan_top=16
#overscan_bottom=16

# uncomment to force a console size. By default it will be display's size minus
# overscan.
#framebuffer_width=1280
#framebuffer_height=720

# uncomment if hdmi display is not detected and composite is being output
hdmi_force_hotplug=1

# uncomment to force a specific HDMI mode (this will force VGA)
hdmi_group=2
hdmi_mode=58

# uncomment to force a HDMI mode rather than DVI. This can make audio work in
# DMT (computer monitor) modes
hdmi_drive=2

# uncomment to increase signal to HDMI, if you have interference, blanking, or
# no display
config_hdmi_boost=4

# uncomment for composite PAL
#sdtv_mode=2

#uncomment to overclock the arm. 700 MHz is the default.
#arm_freq=800

# Uncomment some or all of these to enable the optional hardware interfaces
#dtparam=i2c_arm=on
#dtparam=i2s=on
#dtparam=spi=on

# Uncomment this to enable infrared communication.
#dtoverlay=gpio-ir,gpio_pin=17
#dtoverlay=gpio-ir-tx,gpio_pin=18

# Additional overlays and parameters are documented /boot/overlays/README

# Enable audio (loads snd_bcm2835)
dtparam=audio=on

[pi4]
# Enable DRM VC4 V3D driver on top of the dispmanx display stack
#dtoverlay=vc4-fkms-v3d
#max_framebuffers=2

[all]
#dtoverlay=vc4-fkms-v3d
dtoverlay=w1-gpio


6.SSH
首先要确保树莓派和电脑连同一个wifi下,然后在树莓派的终端输入ifconfig查找树莓派的ip地址(wlan0下方的就是)
然后打开putty,进行连接树莓派3b+安装系统记录_第5张图片
树莓派3b+安装系统记录_第6张图片

7.更换源:

sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
sudo cp /etc/apt/sources.list.d/raspi.list /etc/apt/sources.list.d/raspi.list.bak

sudo nano /etc/apt/sources.list
deb http://mirrors.tuna.tsinghua.edu.cn/raspberry-pi-os/raspbian/ buster main non-free contrib rpi
deb-src http://mirrors.tuna.tsinghua.edu.cn/raspberry-pi-os/raspbian/ buster main non-free contrib rpi

sudo nano /etc/apt/sources.list.d/raspi.list
deb http://mirrors.tuna.tsinghua.edu.cn/raspberrypi/ buster main ui

8.取消开机密码:
(摘录自博主zxy131072)
sudo vi /etc/systemd/system/getty.target.wants/[email protected]
树莓派3b+安装系统记录_第7张图片

9.开机输入密码无法进入桌面,重复输入陷入死循环
解决方案:可能是vnc的问题(开启vncserver提示异常),现已解决。先ctrl+alt+F6,输入用户和密码进入终端,再将/.Xauthority文件删除[rm -rf /home/pi/.Xauthority ,最后重启reboot。

你可能感兴趣的:(日常问题记录,ssh,运维)