raspberry镜像下载:

www.raspberrypi.com/software/operating-systems

镜像烧录完成后:在TF卡中创建 wpa_supplicant.conf 文件,用于开机自动连接wifi。创建ssh空文件,用于自动打开ssh。

country=CN
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
  ssid="wifi名称"
  psk="wifi密码,注意加引号"
  priority=100
}


阿里云树莓派apt源:

developer.aliyun.com/mirror/raspbian

清华树莓派apt源:

mirrors.tuna.tsinghua.edu.cn/help/raspbian

查看raspberry:

~ $ lsb_release -a
No LSB modules are available.
Distributor ID:	Raspbian
Description:	Raspbian GNU/Linux 11 (bullseye) #版本 bullseye
Release:	11
Codename:	bullseye

Debian 11 (bullseye) — 当前的稳定(stable)版

Debian 10(buster) — 当前的旧的稳定(oldstable)版,目前大多数pi4的系统镜像都是这个版本

Debian 9(stretch) — 更旧的稳定(oldoldstable)版,现有长期支持,目前大多数pi3的系统镜像都是这个版本

Debian 8(jessie) — 已存档版本,现有扩展长期支持

查看系统架构:

$ uname -a
Linux raspberrypi 5.10.63-v7+ #1488 SMP Thu Nov 18 16:14:44 GMT 2021 armv7l GNU/Linux

配置apt源:

vi /etc/apt/sources.list
vi /etc/apt/sources.list.d/raspi.list

升级和更新:

apt-get update # 更新源
apt-get upgrade # 升级


设置固定IP:

auto eth0
iface eth0 inet static
address 192.168.0.99
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 114.114.114.114


开启或关闭reapberry的wifi:

rfkill block wifi
rfkill unblock wifi


ubutun vi编辑器方向键乱码问题:

编辑/etc/vim/vimrc.tiny文件:root权限下打开 /etc/vim/vimrc.tiny 文件,将“compatible”改成“nocompatible”非兼容模式。就可以解决方向键变ABCD的问题了。

set nocompatible

接下来要解决Backspace键的问题也很简单,在刚才那句话后面再加一句:

set backspace=2