Skip to content

Instantly share code, notes, and snippets.

@Ponyboy47
Created March 3, 2016 01:53
Show Gist options
  • Save Ponyboy47/8d7381dd0dafca5669a9 to your computer and use it in GitHub Desktop.
Save Ponyboy47/8d7381dd0dafca5669a9 to your computer and use it in GitHub Desktop.
CentOS 6 Plex Server
# This tutorial walks you through a full Plex Media server setup on a CentOS6 minimal install
# Start by installing the required tools
sudo yum install -y wget
# Now download the latest plex server software (This is the most recent as of 3/2/16)
# Go to plex.tv/downloads for the most recent for your system/architecture
wget https://downloads.plex.tv/plex-media-server/0.9.15.6.1714-7be11e1/plexmediaserver-0.9.15.6.1714-7be11e1.i386.rpm
# Now install the rpm you just downloaded
sudo yum install -y plexmediaserver-0.9.15.6.1714-7be11e1.i386.rpm
# Now the server is installed!
# You can access it locally at http://<server_ip>:32400/web
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment