Prototyping for Habitat: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "==Raspberry Installation== → https://pzwiki.wdka.nl/mediadesign/The_Ultimate_RPi_Installation_Guide <br> 1. Download an OS image file * RASPBIAN: https://www.raspberrypi.org...")
 
Line 1: Line 1:
==Raspberry Installation==
==Raspberry Installation==
→ https://pzwiki.wdka.nl/mediadesign/The_Ultimate_RPi_Installation_Guide <br>
→ https://pzwiki.wdka.nl/mediadesign/The_Ultimate_RPi_Installation_Guide <br>
1. Download an OS image file
1. '''Download an OS image file'''
* RASPBIAN: https://www.raspberrypi.org/software/operating-systems/
* RASPBIAN: https://www.raspberrypi.org/software/operating-systems/


2. Put image on SD Card
2. '''Put image on SD Card'''


* Open terminal
* Open terminal
Line 15: Line 15:
  sudo dd bs=4m if=/path/to/your/image.img of=/dev/rdisk<number>
  sudo dd bs=4m if=/path/to/your/image.img of=/dev/rdisk<number>


3. Enable SSH on the Pi
3. '''Enable SSH on the Pi'''


With a screen + keyboard <br>
With a screen + keyboard <br>
Line 27: Line 27:
* Choose Finish
* Choose Finish


4. put the SD card back in the Pi and boot it up
4. '''put the SD card back in the Pi and boot it up'''






</div>
</div>

Revision as of 13:24, 18 November 2021

Raspberry Installation

https://pzwiki.wdka.nl/mediadesign/The_Ultimate_RPi_Installation_Guide
1. Download an OS image file

2. Put image on SD Card

  • Open terminal
  • Find the disk that you are going to write to
diskutil list
  • Find the disk /dev/disk<number>
  • You need to unmount the SD Card before imaging
sudo diskutil unmountDisk /dev/disk<number>
  • Then to image the disk with your image put in the following command
sudo dd bs=4m if=/path/to/your/image.img of=/dev/rdisk<number>

3. Enable SSH on the Pi

With a screen + keyboard

  • Connect the Pi to a screen and keyboard.
  • Run: sudo raspi-config
  • Select Interfacing Options
  • Navigate to and select SSH
  • Choose Yes
  • Select Ok
  • Choose Finish

4. put the SD card back in the Pi and boot it up