takeover

Members
  • Posts

    14
  • Joined

  • Last visited

About takeover

  • Birthday 10/09/1987

Converted

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

takeover's Achievements

Noob

Noob (1/14)

4

Reputation

  1. So you just need to do the next step which is to create an encrypted remote. I would also recommend setting up Service Accounts if you plan on exceeding 750gb/day otherwise here is an example of what your rclone config should look like if you want an encrypted Plex folder [googledrive] type = drive client_id = ********** client_secret = ********** scope = drive token = {"access_token":"**********"} server_side_across_configs = true [googledrive_encrypted] type = crypt remote = googledrive:encrypted_plex_folder filename_encryption = standard directory_name_encryption = true password = ********** password2 = **********
  2. Hmm works for me but I am using scripts on a VPS machine rather than Unraid. I know Userscripts recently got an update but not sure if that is stopping scripts from displaying live progress
  3. The reason for this is because of the Discord notifications. If you don't care for Discord notifications then you can remove "--stats 9999m" and change "-vP" to -vvv or -P
  4. If yout want to add the root folder ID manually you can find it when you go to your Google Drive in you web browser, the folder ID is the number in the URL. Or you can skip and when it asks if it is a Team Drive you select yes and it will let you pick your Team Drive. Either way same result
  5. I got Discord webhook notifications working. Not sure if you would like to implement this into your scripts.
  6. I have never had to use /mnt/cache to max out my download speed. I have set my downloads folder to use ssd cache to 'yes' in share settings and have done without cache as well and my download speed didn't change. these are my mappings /user > /mnt/user
  7. Got the deal on black friday with ChicagoVPS, also I am using a Google Cloud VPS which is free for the first year with the $300 credit trial
  8. So I got the idea from someone here to use a VPS... and I managed to sucessfully set this up and it is working great! Using the scripts to upload to my teamdrive, freeing up my bandwidth! So the VPS I use is a 1core, 1g ram, 50gb storage, 1g connection, 15tb/month for $35 a year. The setup is to just install docker and try to keep it minimal with letsencrypt, nzbget, and sonarr. Pros scripts work great with a few tweaks to get best performance free up your bandwidth or help upload even more Cons basic knowlege with linux, terminal, docker your providers restrcitions storage space for initial download (can't download anything bigger than your drive supports) extra cost to use this setup
  9. Found this script for getting around the limit if anyone is interested https://github.com/xyou365/AutoRclone/
  10. I set what the variables do at the top in each script. As far as using hotio docker, it has a different purpose unlike the scripts.
  11. So I modified the scripts for myself and a few of my friends but I wanted to see if anyone can spot anything wrong with them or ways to improve it. I also wanna say thanks alot for these scripts they been so useful. Also I am a novice when it comes to coding so keep that in mind Thanks Github Link
  12. I wanna say I appreciate these awesome scripts! They have been working flawlessly for me so far. Now for my question, can I restructure the directories? I know to change each script and the corresponding directory path. Would this cause any problems? mkdir -p /mnt/user/appdata/other/rclone mkdir -p /mnt/user/mount_rclone/google_vfs mkdir -p /mnt/user/mount_unionfs/google_vfs mkdir -p /mnt/user/rclone_upload/google_vfs CHANGE TO mkdir -p /mnt/user/appdata/other/rclone mkdir -p /mnt/user/plexdrive/media_rclone/media mkdir -p /mnt/user/plexdrive/media_unionfs/media mkdir -p /mnt/user/plexdrive/media_upload/media