yum install fontconfig libXrender libXext xorg-x11-fonts-Type1 xorg-x11-fonts-75dpi freetype libpng zlib libjpeg-turbo
#Setting up Docker Machine on Raspberry PI
- SSH into the pi and install docker with
curl -sSL https://get.docker.com | sh(If we let Machine try to install the Docker daemon it will fail.) - Change the OS's ID so Docker Machine won't throw errors.
sudo nano /etc/os-releaseand change the line that saysID=raspbiantoID=debian - From a new terminal window run
docker-machine create --driver generic --generic-ip-address YOUR-PIS-IP --generic-ssh-key ~/.ssh/id_rsa --generic-ssh-user pi --engine-storage-driver overlay2 MACHINE-NAME
#Headless Setup of Raspberry Pi Zero W (Raspberry Pi 3 Wireless) (macOS)
- Formatt the Micro SD card - Open a terminal and type 'diskutil list'. Find your card and copy the disk name (For example: /dev/disk4). Format the card with
diskutil eraseDisk ExFat temp disk4(Use your disk here) - Download Raspbian -
wget https://downloads.raspberrypi.org/raspbian_lite_latest - Unmount the SD card -
diskutil unmountDisk /dev/disk4or whatever your disk path is - Mount the Raspbian image to the card -
sudo dd if=PATH-TO-RASPBIAN-IMAGEof=/dev/disk4` or whatever your disk path is - Enable SSH on the Pi -
cd /volumes && ls. You should see a boot partition from the SD cardcd boot && touch ssh - Setup WiFi on the PI - While still in the boot partition of the card type
nano wpa_supplicant.confand enternetwork={ ssid="YOUR-SSID" psk="YOUR-WIFI-PASSWORD" } - Boot the PI - Unmount the card
diskutil unmountDisk /dev/disk4(or whatever your disk path is) and put it in the
OlderNewer