Skip to content

Instantly share code, notes, and snippets.

@gvn
Last active April 8, 2017 21:14
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 gvn/d7b1fa456cc3f5778e66c6ed5afd6732 to your computer and use it in GitHub Desktop.
Save gvn/d7b1fa456cc3f5778e66c6ed5afd6732 to your computer and use it in GitHub Desktop.
Upgrading Plex Media Server on Ubuntu Server

Manual

  1. In the Plex web client click Settings -> General.
  2. Copy target URL for "Please Install Manually".
  3. wget MANUAL_UPDATE_URL -O pms.deb
  4. sudo dpkg -i pms.deb
  5. rm pms.deb

Bash script

#!/bin/bash

wget -O plexblob $1
sudo dpkg -i plexblob
rm plexblob
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment