1. 开启ssh登录

烧录系统后在boot分区内新建一个空白文件命名为ssh

2. 开启wifi

烧录系统后在boot分区内新建文件命名为 wpa_supplicant.conf
向该文件写入:

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

network={
  ssid="<Name of your wireless LAN>"
  psk="<Password for your wireless LAN>"
}

3. 设置静态ip

修改文件/etc/dhcpcd.conf
添加内容:

interface eth0
static ip_address=192.168.1.20/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1

interface wlan0
static ip_address=192.168.1.20/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1

4. 启用root账户并允许ssh登录

设置root密码

sudo passwd root

修改文件 /etc/ssh/sshd_config

#PermitRootLogin prohibit-password

修改为:

PermitRootLogin yes

5. 换源

软件更新源

/etc/apt/sources.list

系统更新源

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

中国科学技术大学源 http://mirrors.ustc.edu.cn/raspbian/raspbian/

阿里云源 http://mirrors.aliyun.com/raspbian/raspbian/