Skip to content

Instantly share code, notes, and snippets.

@zentrification
Last active July 24, 2019 16:58
Show Gist options
  • Save zentrification/3a913d0d4deadbd2915a8bfb8811e225 to your computer and use it in GitHub Desktop.
Save zentrification/3a913d0d4deadbd2915a8bfb8811e225 to your computer and use it in GitHub Desktop.
Sabnzbd, Sonarr, Radarr
Install WSL (Windows Linux Subsystem)
https://docs.microsoft.com/en-us/windows/wsl/install-win10
Windows drives accessible under /mnt
https://docs.microsoft.com/en-us/windows/wsl/faq
Install Sabnzbd
sudo apt install sabnzbdplus
Install Sonarr
https://github.com/Sonarr/Sonarr/wiki/Installation#linux
Enable Plex PPA
https://support.plex.tv/articles/235974187-enable-repository-updating-for-supported-linux-server-distributions/
Install Plex
sudo apt update
sudo apt install plexmediaserver
Systemd is broken on WSL, so we need to manually create an init script
sudo nano /etc/init.d/plexmediaserver
Paste the contents of https://gist.github.com/typomedia/6469961
sudo chmod +x /etc/init.d/plexmediaserver
sudo update-rc.d plexmediaserver defaults
sudo /etc/init.d/plexmediaserver start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment