Install Operating system on raspberry pi 0w » Historique » Version 3
openbeelab, 02/02/2019 16:32
1 | 2 | openbeelab | # Install Operating system on raspberry pi 0w |
---|---|---|---|
2 | 1 | guillaume.devoyon | |
3 | 2 | openbeelab | To install Operating system on Raspberry pi there are many website describing how to do. For french noobies, better explanations here : https://edutechwiki.unige.ch/fr/Installation_de_Raspbian |
4 | 1 | guillaume.devoyon | |
5 | 2 | openbeelab | ## Raspbian Lite |
6 | |||
7 | 1 | guillaume.devoyon | The steps are classic : |
8 | |||
9 | 2 | openbeelab | - Dowloading image from https://www.raspberrypi.org/downloads/raspbian/ and download the "Raspbian Stretch Lite" version. We will not use X servers and other desktops tools. Just console. |
10 | |||
11 | `wget https://downloads.raspberrypi.org/raspbian_lite_latest` |
||
12 | |||
13 | - unrar the .zip |
||
14 | |||
15 | `tar -xvf /my/raspbian/iso.zip` |
||
16 | |||
17 | - Install it on SDcard from your desktop pc https://www.raspberrypi.org/documentation/installation/installing-images/ |
||
18 | |||
19 | `dd bs=1m if=/iso/place/on/my/computer of=/dev/mysdcard conv=sync` |
||
20 | |||
21 | - activate ssh, to create the ssh file in boot to activate it |
||
22 | 3 | openbeelab | |
23 | 2 | openbeelab | `$ touch /Volumes/boot/ssh` |
24 | |||
25 | |||
26 | |||
27 | |||
28 | |||
29 | |||
30 | ## Buildroot |
||
31 | |||
32 | Buildroot is a tool that help to build Linux embedded dedicated system. Basic tutorial here : https://code4pi.fr/2014/03/creation-dune-custom-image-pour-votre-raspberry-pi/ |