2024年11月21日星期四 下午9:23:23

How to install Raspberry Pi OS Lite (64-bit) with an SD card reader

10 个月 前
#28376 引用
part 3

step 1 Enabling SSH with raspi-config

ssh server

树莓派系统默认禁止远程登录root用户,因此需要修改配置文件sshd_config

Permission denied, please try again

sshd_config是sshd的配置文件,其中PermitRootLogin可以限定root用户通过ssh的登录方式,如禁止登陆、禁止密码登录、仅允许密钥登陆和开放登陆,以下是可选项:


PermitRootLogin prohibit-password 表示允许 root 账户登录,但是不能以密码的方式登录.所以只能以公私钥的方式登录.
允许远程登录root用户

PermitRootLogin yes,允许 root 账户登录,直接使用密码就可以登录。


因为 sshd 默认禁止 root 账户登录,所以需要使能 PermitRootLogin 选项

#sudo vim /etc/ssh/sshd_config
-#PermitRootLogin prohibit-password
+PermitRootLogin yes




-#PasswordAuthentication no
+PasswordAuthentication yes


service sshd restart

https://blog.matterxiaomi.com/blog/Raspberry-Pi-ssh-server-part1/
0
10 个月 前
#28381 引用
20240120
@raspberrypi:~# df -hl
Filesystem      Size  Used Avail Use% Mounted on
udev            319M     0  319M   0% /dev
tmpfs            91M  1.0M   90M   2% /run
/dev/mmcblk0p2   29G  2.4G   25G   9% /
tmpfs           455M     0  455M   0% /dev/shm
tmpfs           5.0M   12K  5.0M   1% /run/lock
/dev/mmcblk0p1  510M   61M  450M  12% /boot/firmware
tmpfs            91M     0   91M   0% /run/user/0

0
9 个月 前
#28436 引用
Verifying write failed

When trying to flash a Raspberry Pi OS Lite (64-bit) .img.gz image file to a 39gb TF class 10 microSD card, it gives the characterisitic "Verifying write failed.
Contents of SD card is different then than what was written to it." Balena Etcher does it too.

https://github.com/raspberrypi/rpi-imager/issues/323
0