Created
April 9, 2020 21:43
-
-
Save ksloan/ab3f7a8a75a8b6629da603004be5505b to your computer and use it in GitHub Desktop.
install plex raspbian
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
sudo apt update | |
sudo apt install apt-transport-https ca-certificates curl | |
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 | |
sudo apt update | |
sudo apt install plexmediaserver | |
# verify | |
sudo systemctl status plexmediaserver | |
sudo mkdir -p ~/plex | |
sudo chown -R plex: ~/plex |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment