Create install.sh

This commit is contained in:
RomanNum3ral 2024-03-20 12:08:44 -04:00 committed by GitHub
parent eb81dea492
commit 3f3c3869a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

8
install.sh Normal file
View File

@ -0,0 +1,8 @@
#! /bin/bash
sudo apt update && sudo apt upgrade -y
sudo apt install apt-transport-https curl wget -y
sudo wget -O- https://downloads.plex.tv/plex-keys/PlexSign.key | gpg --dearmor | sudo tee /usr/share/keyrings/plex.gpg
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
sudo apt update
sudo apt install plexmediaserver -y