安装步骤

  1. 在官网https://www.raspberrypi.org/下载官方 OS(2018-11-13-raspbian-stretch-lite.zip),解压后得到 img 文件
  2. 下载格式化软件SDFormatter,格式化 SD 卡。
  3. 下载"Win32DiskImager",将刚才下载的镜像烧录至 SD 卡。Mac 可以用ApplePi-Baker
  4. 启用 ssh:在 SD 卡根目录下创建空白文件,命名为 ssh,无后缀名
  5. 链接 wifi:在 SD 卡根目录下创建文件"wpa_supplicant.conf",写入以下内容
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
}
  1. 插入 SD 卡至树莓派,连上电源
  2. ssh 登录,默认密码"raspberry"
ssh pi@raspberrypi.local
  1. 修改时区
sudo rm /etc/localtime
sudo cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
  1. 更改国内源
sudo vi /etc/apt/sources.list
# 注释掉原来的源,加上
deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretch main contrib non-free rpi
deb-src http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ stretch main contrib non-free rpi

sudo vi /etc/apt/sources.list.d/raspi.list
# 注释掉原来的源,加上
deb http://mirror.tuna.tsinghua.edu.cn/raspberrypi/ stretch main ui
deb-src http://mirror.tuna.tsinghua.edu.cn/raspberrypi/ stretch main ui
  1. 安装 vim
sudo apt-get update
sudo apt-get install vim
  1. 修改密码
passwd
  1. locale 问题
sudo vi /etc/locale.gen
# uncomment the line with en_US.UTF-8
sudo locale-gen en_US.UTF-8
sudo update-locale en_US.UTF-8
  1. 修改 hostname

修改’/etc/hosts’,’/etc/hostname’两个文件中的 hostname