Skip to content

Instantly share code, notes, and snippets.

@rakibulinux
Created June 24, 2020 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rakibulinux/c0cdb652d87cf6bb1c6953c7f8696678 to your computer and use it in GitHub Desktop.
Save rakibulinux/c0cdb652d87cf6bb1c6953c7f8696678 to your computer and use it in GitHub Desktop.
How to Install Plex Media Server on Ubuntu 18.04
#!/bin/sh
curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -
echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
sudo apt install apt-transport-https
sudo apt update
sudo apt install plexmediaserver
sudo systemctl status plexmediaserver
sudo chown -R plex: /opt/plexmedia
#Visit Web
http://YOUR_SERVER_IP:32400/web
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment