Though many of you had saw tremendously good wiki and tutorials on how to setup, this is obviously one of those too. But it is mainly focused on hosting on Bytesied-Hosting provider. Also, I will be linking most of the stuffs to other tutorials from where I got the information.
What is the end result?
- Rclone mount
- Plex server setup
- Radarr for Movies
- Sonarr for T.V Shows
- Nzbget and Sabnzbd for NZB handling
- Deluge (Torrent)
- Jackett (Indexer)
- Ombi (User Requests)
- Bazarr (Subtitles)
- Filebot (Optional)
What it doesn't include and why?
- Couchpotato (since Radarr is much better)
- Sickbeard / Sickrage (since Sonarr is more stable)
- Olaris Rename (works great but Filebot is supreme)
- Cardigann (Jakett works better)
- Bytesized account
- SSH (Putty for Windows)
- Filezilla (FTP application for easy handling of files)
1) Run "rclone config"
2) press n
3) Give name
4) Choose 13 for Google Drive
5) Put Clinet Id
6) Put Client Secret
7) Put 1 (scope full access)
8) Root folder default
9) Service account default
10) Choose 'N' for Advanced config
11) Choose 'N' for Auto config (since we are in a headless machine) (a link will show, copy with highligting it and open in browser, login, click advanced, go to rclone, allow)
12) Y (If it is a google team/shared drive)
13) Write your team drive number if you selected "Y" above
13) Y (after checking all is fine)
We will follow Bytesized Tutorial We will create the following folder through Putty on server:
mkdir ~/mnt
mkdir ~/mnt/gdrive
mkdir ~/mnt/media_merge
mkdir ~/media_tmp
mkdir ~/scripts
mkdir ~/.config/mergerfsNow create a script that will upload from local to google drive:
nano ~/scripts/uploadmedia
screen -dmS uploadmedia /usr/local/bin/rclone move ~/media_tmp <insertName>: --delete-empty-src-dirs -v --stats 5s // name used in rclone config and remove < >
Press Ctrl + X
Press Y for yes.
Press Enter to confirm file name.
chmod +x ~/scripts/uploadmedia //to make the script executable.Now a crontab that will upload automatically at specific time:
crontab -e
0 5 * * * ~/scripts/uploadmedia // put this in the file
Press Ctrl + X, Y and the EnterNow follow the link and create a startup script:
Change the id, group id and user agent
--dir-cache-time 72h --poll-interval 15s --vfs-read-chunk-size 16M // add these parameters to rclone too
chmod +x ~/.startup/gdriveWe will use this to download movies.