Last active
August 15, 2021 10:54
-
-
Save mrpjevans/199baf3e6f8b35f67f94294d2c878358 to your computer and use it in GitHub Desktop.
Install Plex on Raspberry Pi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Plex's repository uses HTTPS as the transport, so we need to install support | |
sudo apt update | |
sudo apt install apt-transport-https ca-certificates curl | |
# Get Plex's public key and add the Plex repo | |
curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add - | |
echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list | |
# Install the server | |
sudo apt update | |
sudo apt install plexmediaserver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment