Link Search Menu Expand Document

Retropie on a Raspberry Pi 3 Model B

This is how I installed Retropie on Raspberry Pi.

Table of contents
  1. Getting started
    1. Download premade image.
    2. Enable SSH
    3. Enable WiFi
  2. Authors
  3. Acknowledgments

Getting started

Download premade image.

https://retropie.org.uk/download/#Pre-made_images_for_the_Raspberry_Pi

Enable SSH

From a system with an SD-card reader, access the /boot/ directory and create an empty file called ssh.

super:~ teddy$ cd /Volumes/boot
super:boot teddy$ touch ssh

Enable WiFi

super:boot teddy$ nano wpa_supplicant.conf
country=FR # Your 2-digit country code
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
network={
    ssid="YOUR_NETWORK_NAME"
    psk="YOUR_PASSWORD"
    key_mgmt=WPA-PSK
}

Authors

Mr. Johnson


Acknowledgments