How to install Plex Media Server on Ubuntu?
For those who are interested in being able to install this excellent application, They will be able to do it quite simply.
The first thing we are going to do is open a terminal in our system with Ctrl + Alt + T and in it we are going to execute the following command, which will add the Plex repository to our system:
echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
It should be noted that this command is to work for any distribution that supports the installation of deb packages.
After that we will have to import the public Plex key with:
curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -
Once this is done, we will update our list with:
sudo apt update
And finally we can install with:
sudo apt install plexmediaserver
Setting up Plex
To configure Plex, open a web browser and load the web interface, so if you are going to configure it from the computer where it is installed they should only go to:
http: //localhost:32400/web
Post a Comment