Raspberry Notes 1

Download Image

Official website: https://www.raspberrypi.org

The image selected is the Raspbian with Desktop: 

Raspberry Notes 1_第1张图片
RASPBIAN OS

Install OS

In the most cases, an 8GB MicroSD card should suffice, but 16GB or higher is preferred. For the r/w speed of the memory card, Class 10 has been quite popular. Theoretically, within a certain range, the higher the speed, the better the performance. 

Then, use Etcher to burn the system image to the MicroSD card and insert the card into the Raspberry Pi. 

Initialize OS

Set root user: 

sudo passwd

sudo passwd --unlock root

* log in with root

su

Basic settings: 

sudo raspi-config

> Advanced - Expand files

> enable SSH and VNC

sudo reboot

Modify Raspbian mirrors

sudo nano /etc/apt/sources.list

sudo apt-get update

sudo apt-get upgrade

deb http://mirrors.ustc.edu.cn/raspbian/raspbian/ stretch main non-free contrib

deb-src http://mirrors.ustc.edu.cn/raspbian/raspbian/ stretch main non-free contrib

你可能感兴趣的:(Raspberry Notes 1)