树莓派SSD USB启动
Leave a reply
https://www.raspberrypi.com/documentation/computers/raspberry-pi.html
编辑boot
vim /boot/config.txt
关闭无线&蓝牙
dtoverlay=disable-wifi
dtoverlay=disable-bt
https://raspberrytips.com/set-static-ip-address-raspberry-pi/
vim /etc/dhcpcd.conf
有线
interface eth0
static ip_address=192.168.0.110/24
static routers=192.168.0.1
static domain_name_servers=192.168.0.1
无线
interface wlan0
static ip_address=192.168.0.200/24
static routers=192.168.0.1
static domain_name_servers=192.168.0.1