Skip to content

Instantly share code, notes, and snippets.

@koryonik
Created October 26, 2015 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koryonik/3b6b2980d27d307a0781 to your computer and use it in GitHub Desktop.
Save koryonik/3b6b2980d27d307a0781 to your computer and use it in GitHub Desktop.
Install Rasplex from OS X
# download img on https://github.com/RasPlex/RasPlex/releases
# here RasPlex-RPi.RP-0.7.1.img.gz
wget https://github.com/RasPlex/RasPlex/releases/download/0.7.1/RasPlex-RPi.RP-0.7.1.img.gz
# decompress archive
gunzip RasPlex-RPi.RP-0.7.1.img.gz
# find out what device you want to flash to, /dev/diskX (before & after mount sd card)
diskutil list
# unmount sd card filesystem
diskutil unmount /dev/diskX
# or if many partitions exists
diskutil unmountDisk /dev/diskX
#flash image (rdisk is much faster)
sudo dd if=RasPlex-RPi.RP-0.7.1.img of=/dev/rdiskX bs=1m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment