+3 votes
53 views
Plex Media Server Ubuntu | Install

in Linux/Unix by (551k points)
reopened | 53 views

1 Answer

+4 votes
Best answer

How to install Plex Media Server on Ubuntu

In a world where most events and actions are carried out online, platforms are created where thousands of streaming or real-time content are hosted and many of these applications host other well-known platforms (Amazon Prime, Netflix, Disney+, etc.) to that the content portfolio is much larger in order to receive many more users based on this criterion. Many of the series and movies, or audio, that are on the platforms can be free but without a doubt that a higher percentage will be paid, for environments like Ubuntu we can enjoy one of the best platforms such as Plex Media Server..

 

Plex Media Server is a central point where we find streaming services, personal media, ratings, and many more alternatives available in a simple yet modern environment. Plex has more than 20 million users worldwide, more than 300 live television channels, and a portfolio of more than 50,000 options for the taste of each user. Plex Media can be installed on Windows, Linux, FreeBSD or macOS operating systems, but also on NAS and Docker devices, which guarantees access anywhere.

 

 

Features Plex Media
Among the various features that we find in Plex Media we have:

 

  • Live TV DVR Recording
  • Downloads and mobile sync
  • Skip credits for movies and TV shows
  • Hardware accelerated streaming
  • Improved bandwidth limits and transcoding
  • release preview
  • Released Media Control
  • Live TV and DVR
  • Integrated recording management
  • Community Supported Tuners
  • sonic analysis for music
  • LyricFind Automatic Lyrics
  • Correction of music content matches
  • Update of music libraries using a new metadata system
  • Changing artist, album or track information
  • Movie trailers, extras and related albums
  • Play Queue Post Play Screen
  • HDR to SDR Tone Mapping
  • Video preview thumbnails
  • push notifications
  • Automatic photo tagging
  • Function to synchronize watch status and grades

 

 

We see that Plex Media Server allows us not only to have access to video sections but also to audio and something else, now TechnoWikis will explain how to install this platform correctly in Ubuntu..

 

 

To stay up to date, remember to subscribe to our YouTube channel!
SUBSCRIBE ON YOUTUBE

 

How to install Plex Media Server on Ubuntu

 

Step 1

We open the terminal and update the system with the command:
 sudo apt update 
Step 2

Enter the administrator password:

 

 

 

 

 

image

 

Step 3

We wait for the process to finish:

 

image

 

Step 4

once the system is updated, we install the necessary tools for download and management:
 sudo apt install apt-transport-https curl 
image

 

step 5

We download the Plex Media GPG key by running:
 curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add – 
image

 

step 6

Now we add the repository to the Ubuntu base with the command:
 sudo echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list 
image

 

step 7

Update the system again so that the repository is also updated:
 sudo apt update 
image

 

step 8

Once this is done, we install Plex Media Server by running:
 sudo apt install plexmediaserver 
image

 

step 9

We can see that each plugin is downloaded and installed:

 

image

 

step 10

We wait for the process to finish and we notice that during the installation all the multimedia resources of the computer and system are validated:

 

image

 

step 11

Check the status of the Plex service:
 sudo systemctl status plexmediaserver 
image

 

step 12

We enable the service from the boot of Ubuntu:
 sudo systemctl enable --now plexmediaserver 
image

 

step 13

We execute the "ip a" command to know the Ubuntu IP:

 

image

 

step 14

We access Plex from the browser with the syntax:
 http://Ubuntu_IP:32400/web 
image

 

step 15

We can see an access error, in case of this error we enable the port in the Firewall:
 sudo ufw allow 32400 
image

 

step 16

We update the page and it is also possible to access, if desired, from another remote PC using the same syntax, we will see in this case entering remotely from a Windows PC: Log in
or create a new account

 

image

 

step 17

and then we will see the following. We click on "Got it" to see this:

 

 

image

 

step 18

We close the Plex Pass window in case it is visible, this is a plan to access all the premium features of Plex Media.

 

image

 

step 19

Now we assign the name to the server and click on "Next" to see this:

 

image

 

step 20

We confirm or not the synchronization and then we will see the following. We click on "Add Library":

 

image

 

step 21

We select the desired one in the various options presented:

 

image

 

step 22

There it will be possible to select the language to use:

 

image

 

Step 23

We click Next to see this:

 

image

 

step 24

Before selecting the library we return to Ubuntu and in the terminal we execute:
 sudo mkdir -p /opt/plexmedia/{movies,series} 
step 25

This will create the folder to house everything from Plex Media:

 

 

 

 

image

 

step 26

We assign the permissions:
 sudo chown -R plex: /opt/plexmedia 
image

 

Step 27

We return to the Plex Media configuration window and click on "Browse For Media Folder", the following will open to go to the created folder:

 

image

 

Step 28

Apply the changes:

 

image

 

Step 29

We click on "Add Library" to add it:

 

image

 

step 30

We click on "Next":

 

image

 

step 31

We click on "Done" to see the summary:

 

image

 

step 32

We click on "Finish Setup" and now it is possible to select a platform and we will have access to the content of Plex Media in Ubuntu (the same process is local or remote):

 

image

 

Step 33

We can navigate through all the available options:

 

 

image

 

Step 34

To update Plex in the Ubuntu terminal we execute:
 sudo apt update 
image

 

step 35

To update only Plex Media we execute:
 sudo apt install --only-upgrade plexmediaserver 
image

 

Step 36

As an additional point it is possible to create a profile in the UFW Firewall for Plex Media, in this case in the terminal execute:
 sudo nano /etc/ufw/applications.d/plexmediaserver 
image

 

Step 37

There paste the following:
 [plexmediaserver] title=Plex Media Server (Standard) description=The Plex Media Server ports=32400/tcp|3005/tcp|5353/udp|8324/tcp|32410:32414/udp [plexmediaserver-dlna] title=Plex Media Server (DLNA) description=The Plex Media Server (additional DLNA capability only) ports=1900/udp|32469/tcp [plexmediaserver-all] title=Plex Media Server (Standard + DLNA) description=The Plex Media Server (with additional DLNA capability ) ports=32400/tcp|3005/tcp|5353/udp|8324/tcp|32410:32414/udp|1900/udp|32469/tcp 
image

 

Step 38

We save the changes using the following key combination:

 

Ctrl + O

 

We exit the editor using:

 

Ctrl + X

 

 

Step 39

Update profile:
 sudo ufw app update plexmediaserver 
image

 

step 40

Apply the rules:
 sudo ufw allow plexmediaserver-all 
image

 

Step 41

Check the summarized status:
 sudo ufw status verbose 
image

 

We can see how Plex Media is an integral platform to have access to thousands of elements to enjoy every day.

 


by (3.5m points)
edited

Related questions

+5 votes
1 answer
asked Oct 23, 2019 in Linux / Unix by backtothefuture (551k points) | 251 views
+3 votes
1 answer
asked Nov 21, 2022 in Guides by backtothefuture (551k points) | 50 views
+5 votes
1 answer
+4 votes
1 answer
asked Jun 13, 2023 in Linux/Unix by backtothefuture (551k points) | 80 views
+5 votes
1 answer
asked Dec 12, 2022 in Linux/Unix by backtothefuture (551k points) | 199 views
Sponsored articles cost $40 per post. You can contact us via Feedback
10,634 questions
10,766 answers
510 comments
3 users