Media Server Setup: Difference between revisions
No edit summary |
(') |
||
Line 39: | Line 39: | ||
git checkout master | git checkout master | ||
</pre> | </pre> | ||
To update in the future, run | |||
<pre>git pull</pre> |
Revision as of 21:25, 29 November 2020
This recipe is for a standard Plex Media server with Sonarr, Radarr, and Sabnzbd running on Debian 10
Install Plex
Download Plex media server from the Plex download page
https://www.plex.tv/media-server-downloads/#plex-media-server
Once you've copied the URL for the linux/arm64 version, download it using:
wget https://downloads.plex.tv/plex-media-server-new/1.16.5.1488-deeb86e7f/debian/plexmediaserver_1.16.5.1488-deeb86e7f_amd64.deb
Install using
sudo dpkg -i plexmediaserver_1.16.5.1488-deeb86e7f_amd64.deb
Once it's installed, add it to the aptitude package manager by uncommenting the last line in /etc/apt/sources.list.d/plexmediaserver.list:
sudo vi /etc/apt/sources.list.d/plexmediaserver.list
# When enabling this repo please remember to add the PlexPublic.Key into the apt setup. # wget -q https://downloads.plex.tv/plex-keys/PlexSign.key -O - | sudo apt-key add - deb https://downloads.plex.tv/repo/deb/ public main
Add the key for the repo to apt
wget -q https://downloads.plex.tv/plex-keys/PlexSign.key -O - | sudo apt-key add -
Update
sudo apt update sudo apt upgrade
Install SABNZBD
Clone the repo to your home directory:
git clone https://github.com/sabnzbd/sabnzbd.git cd sabnzbd git checkout master
To update in the future, run
git pull