Skip to content

Instantly share code, notes, and snippets.

@berikv
Created January 7, 2019 12:55
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 berikv/6ec3a5a8740d522b6b5fc646c09731eb to your computer and use it in GitHub Desktop.
Save berikv/6ec3a5a8740d522b6b5fc646c09731eb to your computer and use it in GitHub Desktop.
RaspberryPI Media server

Add the dev2day repository to your package source list

wget -O - https://dev2day.de/pms/dev2day-pms.gpg.key | sudo apt-key add -

Add dev2day’s repository to the package source list

echo "deb https://dev2day.de/pms/ jessie main" | sudo tee /etc/apt/sources.list.d/pms.list

Update the package list

sudo apt-get update

Download plex

sudo apt-get install -t jessie plexmediaserver

Open plex in your browser

Go to <ip.address.of.raspberry>:32400/web/

Install mac os file system

sudo apt-get install hfsplus hfsutils hfsprogs

Find disk uuid

Make sure the disk is not connected, then run:

ls -l /dev/disk/by-uuid/

Now connect you drive and run (again)

ls -l /dev/disk/by-uuid/

You should see which drive is added (likely sda2 or sda3). Copy the ID (the combination of numbers and letters before the sda2).

Make a mount point

mkdir /media/<drive name> sudo mount -t hfsplus -o force,rw UUID=12345 /media/<drive name>

Install

sudo apt-get install transmission-daemon

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment