Post

Plex Install - Ubuntu 22.04

Plex is a global streaming media service and a client–server media player platform, made by Plex, Inc. The Plex Media Server organizes video, audio, and photos from a user’s collections and from online services, and streams it to the players.

Update Ubuntu Server

1
sudo apt update && sudo apt upgrade -y

Install Dependencies

1
sudo apt install apt-transport-https curl wget -y

Install Plex Repository

1
echo deb [signed-by=/usr/share/keyrings/plex.gpg] https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list

Import GPG Key

1
sudo wget -O- https://downloads.plex.tv/plex-keys/PlexSign.key | gpg --dearmor | sudo tee /usr/share/keyrings/plex.gpg

Update APT

1
sudp apt update

Install Plex Media Server

1
sudo apt install plexmediaserver -y

Check Status

1
sudo systemctl status plexmediaserver

Enable Plex to start on boot

1
sudo systemctl enable plexmediaserver
This post is licensed under CC BY 4.0 by the author.