Plex

De WikiMar
La revisió el 23:35, 30 març 2018 per Marti (discussió | contribucions) (Es crea la pàgina amb « ==Plex Installation on Ubuntu== https://support.plex.tv/articles/235974187-enable-repository-updating-for-supported-linux-server-distributions/ echo deb https://down...».)
(dif.) ← Versió més antiga | Versió actual (dif.) | Versió més nova → (dif.)
Salta a la navegació Salta a la cerca

Plex Installation on Ubuntu

https://support.plex.tv/articles/235974187-enable-repository-updating-for-supported-linux-server-distributions/

echo deb https://downloads.plex.tv/repo/deb ./public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -

Maybe also:

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


By default the Library (index) is stored at

/var/lib/plexmediaserver/Library/Application\ Support/ Plex/config/Library/

to move it to another location:

sudo service plexmediaserver stop
mv /var/lib/plexmediaserver/Library /media/K4000_64k/_NoRsynced/Plex/config/
sudo ln -s /media/K4000_64k/_NoRsynced/Plex/config/Library /var/lib/plexmediaserver/Library
sudo service plexmediaserver start


Media files on a mounted NTFS drive

https://github.com/linuxserver/docker-plex/issues/95

The Transcoder to work (change resolution, or add subtitles) it needs exec permission also where the movies are stored.

Otherwise you get errors in the player like "Conversion failed. The transcoder crashed or failed to start up."

To solve this you can change the /etc/fstab and replace "noexec" with "exec"

UUID=C8C23A75C23A67B8	/media/klang/Foto	ntfs-3g	user,fmask=0111,dmask=0000,permissions,exec	0	0


Automatic subtitles download

https://github.com/pannal/Sub-Zero.bundle/wiki/Sub%E2%80%90Zero-Configuration#subtitles-storage-configuration

But important to disable the option "Automatically delete leftover/unused (externally saved) subtitles"

otherwise it deletes the .srt files already manually downloaded.