01_树莓派开发环境搭建
1. 树莓派简介 Raspberry Pi(中文名为“树莓派”), 是为学生计算机编程教育而设计,只有信用卡大小的微型电脑,其系统基于Linux。 2. 烧录系统 官网下载: https://www.raspberrypi.org/downloads/raspbian/ 3.树莓派系统启动 开启SSH: sudo raspi-config -> Interfacing Options -> SSH 4. 树莓派系统设置 sudo raspi-config -> Localisation Options 5. 树莓派显示中文 sudo apt-get update sudo apt-get upgrade sudo apt-get install ttf-wqy-zenhei sudo raspi-config -> Localisation Options -> Change Locale -> zh_CN * -> sudo reboot 6. 固定树莓派IP sudo nano /etc/dhcpcd.conf # wifi连接 wlan0 网线连接 eth0 interface eth0 static ip_address=192.168.1.188/24 static routers=192.168.1.1 static domain_name_servers=192