- 
      
 - 
        
Save UbuntuEvangelist/c83bc79f9897ffd5c7ca9f1214350ba2 to your computer and use it in GitHub Desktop.  
    How to Install Plex Media Server on Ubuntu 18.04
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/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