準備好作業系統映象
官方映象下載
格式化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
複製程式碼