Projet

Général

Profil

Install Operating system on raspberry pi 0w » Historique » Version 4

openbeelab, 02/02/2019 16:49

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 4 openbeelab
  
25
  - activate ssh by usb,
26 2 openbeelab
27 4 openbeelab
edit config.txt @ the root of the sd card and add "dtoverlay=dwc2" or directly
28 2 openbeelab
29 4 openbeelab
`echo "dtoverlay=dwc2" >> /path/to/my/sd/card/config.txt
30
echo "modules-load=dwc2,g_ether" >> /path/to/my/sd/card/cmdline.txt`
31 2 openbeelab
32 4 openbeelab
33
34
ssh pi@raspberrypi.local
35
   
36
    - eject sdcard : 
37
38
`$ sudo diskutil eject /dev/mmcbbtruc0
39
Password:
40
Disk /dev/mmcbbtruc0 ejected`
41
42
    - start pi0 : put the sdcard in pi0 and plug it with usb to your computer
43
44
    - connect to pi0
45
46
`ssh pi@raspberrypi.local`
47 2 openbeelab
48
49
50
## Buildroot
51
52
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/