准备好操作系统镜像
官方镜像下载
格式化sd卡
写入系统工具
无显示器配置ssh和wifi
创建/boot/wpa_supplicant.conf
内容如下
country=CN
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="WiFi-A"
psk="12345678"
key_mgmt=WPA-PSK
priority=1
}
network={
ssid="WiFi-B"
psk="12345678"
key_mgmt=WPA-PSK
priority=2
scan_ssid=1
}
复制代码
说明:
# ssid:网络的ssid
# psk:密码
# priority:连接优先级,数字越大优先级越高(不可以是负数)
# scan_ssid:连接隐藏WiFi时需要指定该值为1
# 默认使用WPA/WPA2加密
network={
ssid="你的无线网络名称ssid"
key_mgmt=WPA-PSK
psk="你的wifi密码"
}
复制代码
创建/boot/ssh
默认账户密码
user: pi pwd: raspberry
mac iterm2 profiles 配置
编写 profile command文件
内容如下所示
#!/usr/bin/expect -f
set username [username, 如root]
set host [remote ip, 如192.168.0.104]
set password [password, 如123]
set time -1
spawn ssh $username@$host
expect "*assword:*"
send "$password\r"
interact
expect eof
复制代码