Skip to content

Instantly share code, notes, and snippets.

@UbuntuEvangelist
Forked from rakibulinux/Plex.sh
Created July 7, 2020 21:07
Show Gist options
  • Save UbuntuEvangelist/c83bc79f9897ffd5c7ca9f1214350ba2 to your computer and use it in GitHub Desktop.
Save UbuntuEvangelist/c83bc79f9897ffd5c7ca9f1214350ba2 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