Skip to content

Instantly share code, notes, and snippets.

@luciopaiva
Last active September 15, 2019 13:33
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 luciopaiva/29afef9114afd92cbe86419d3357960e to your computer and use it in GitHub Desktop.
Save luciopaiva/29afef9114afd92cbe86419d3357960e to your computer and use it in GitHub Desktop.

Plex Media Server on Ubuntu

Install it by following the instructions on the web site.

Troubleshooting Plex not seeing media files

Make sure your directories and files have the right permissions:

find . -type f -exec chmod 644 {} ; find . -type d -exec chmod 755 {} ;

Preparing pen drive mounts as libraries

You should read this tutorial: https://forums.plex.tv/t/using-ext-ntfs-or-other-format-drives-internal-or-external-on-linux/198544

Running it as a service

How to start it as a service:

sudo systemctl enable plexmediaserver.service
sudo systemctl start plexmediaserver.service

Reference: https://www.linode.com/docs/applications/media-servers/install-plex-media-server-on-ubuntu-18-04/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment