-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Thanks - That seems to have got it working
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
ok getting this error now (tried a reboot too)... 21.08.2021 15:51:06 INFO: Creating secure mergerfs mount. mv: cannot move '/mnt/user/GMerged/secure' to '/mnt/user/Glocal/secure/secure': File exists fuse: mountpoint is not empty fuse: if you are sure this is safe, use the 'nonempty' mount option 21.08.2021 15:51:06 INFO: Checking if secure mergerfs mount created. 21.08.2021 15:51:06 CRITICAL: secure mergerfs mount failed. Stopping dockers. deleted /mnt/user/Glocal/secure/secure ran script again... 2021/08/21 16:30:43 DEBUG : 5 go routines active 21.08.2021 16:30:43 INFO: *** Creating mount for remote secure 21.08.2021 16:30:43 INFO: sleeping for 5 seconds 2021/08/21 16:30:43 NOTICE: Serving remote control on http://localhost:5572/ 2021/08/21 16:30:44 Fatal error: Can not open: /mnt/user/GDrive/secure: open /mnt/user/GDrive/secure: transport endpoint is not connected 21.08.2021 16:30:48 INFO: continuing... 21.08.2021 16:30:48 CRITICAL: secure mount failed - please check for problems. Stopping dockers
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
/ Is this correct now? My scripts look like this... #!/bin/bash ###################### #### Mount Script #### ###################### ## Version 0.96.9.2 ## ###################### ####### EDIT ONLY THESE SETTINGS ####### # INSTRUCTIONS # 1. Change the name of the rclone remote and shares to match your setup # 2. NOTE: enter RcloneRemoteName WITHOUT ':' # 3. Optional: include custom command and bind mount settings # 4. Optional: include extra folders in mergerfs mount # REQUIRED SETTINGS RcloneRemoteName="secure" # Name of rclone remote mount WITHOUT ':'. NOTE: Choose your encrypted remote for sensitive data RcloneMountShare="/mnt/user/GDrive" # where your rclone remote will be located without trailing slash e.g. /mnt/user/mount_rclone RcloneMountDirCacheTime="720h" # rclone dir cache time LocalFilesShare="/mnt/user/Glocal" # location of the local files and MountFolders you want to upload without trailing slash to rclone e.g. /mnt/user/local. Enter 'ignore' to disable RcloneCacheShare="/mnt/user0/GDrive" # location of rclone cache files without trailing slash e.g. /mnt/user0/mount_rclone RcloneCacheMaxSize="400G" # Maximum size of rclone cache RcloneCacheMaxAge="336h" # Maximum age of cache files MergerfsMountShare="/mnt/user/GMerged" # location without trailing slash e.g. /mnt/user/mount_mergerfs. Enter 'ignore' to disable DockerStart="nzbget plex sonarr radarr ombi" # list of dockers, separated by space, to start once mergerfs mount verified. Remember to disable AUTOSTART for dockers added in docker settings page #MountFolders=\{"downloads/complete,downloads/intermediate,downloads/seeds,movies,tv"\} # comma separated list of folders to create within the mount # Note: Again - remember to NOT use ':' in your remote name above # OPTIONAL SETTINGS # Add extra paths to mergerfs mount in addition to LocalFilesShare LocalFilesShare2="ignore" # without trailing slash e.g. /mnt/user/other__remote_mount/or_other_local_folder. Enter 'ignore' to disable LocalFilesShare3="ignore" LocalFilesShare4="ignore" I've taken out rcloneuploadremotename.. #!/bin/bash ###################### ### Upload Script #### ###################### ### Version 0.95.5 ### ###################### ####### EDIT ONLY THESE SETTINGS ####### # INSTRUCTIONS # 1. Edit the settings below to match your setup # 2. NOTE: enter RcloneRemoteName WITHOUT ':' # 3. Optional: Add additional commands or filters # 4. Optional: Use bind mount settings for potential traffic shaping/monitoring # 5. Optional: Use service accounts in your upload remote # 6. Optional: Use backup directory for rclone sync jobs # REQUIRED SETTINGS RcloneCommand="move" # choose your rclone command e.g. move, copy, sync RcloneRemoteName="secure" # Name of rclone remote mount WITHOUT ':'. RcloneUploadRemoteName="" If you have a second remote created for uploads put it here. Otherwise use the same remote as RcloneRemoteName. LocalFilesShare="/mnt/user/Glocal" # location of the local files without trailing slash you want to rclone to use RcloneMountShare="/mnt/user/GDrive" # where your rclone mount is located without trailing slash e.g. /mnt/user/mount_rclone MinimumAge="15m" # sync files suffix ms|s|m|h|d|w|M|y ModSort="ascending" # "ascending" oldest files first, "descending" newest files first # Note: Again - remember to NOT use ':' in your remote name above # Bandwidth limits: specify the desired bandwidth in kBytes/s, or use a suffix b|k|M|G. Or 'off' or '0' for unlimited. The script uses --drive-stop-on-upload-limit which stops the script if the 750GB/day limit is achieved, so you no longer have to slow 'trickle' your files all day if you don't want to e.g. could just do an unlimited job overnight. BWLimit1Time="01:00" BWLimit1="off" BWLimit2Time="08:00" BWLimit2="15M" BWLimit3Time="16:00" BWLimit3="12M" # OPTIONAL SETTINGS # Add name to upload job JobName="_daily_upload" # Adds custom string to end of checker file. Useful if you're running multiple jobs against the same remote. # Add extra commands or filters Command1="--exclude downloads/**" Command2="" Command3="" Command4="" Command5="" Command6="" Command7="" Command8=""
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Thanks, I've commented out: #RcloneRemoteName="secure" # Name of rclone remote mount WITHOUT ':'. In both upload and mount script - is this correct?
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Having a few problems with the script - it works ok until a rebbot happens. Main problem is it seems to be putting downloads in to /GMerged/secure/secure/downloads /GLocal/secure/secure/downloads Seems to be adding an extra secure directory? (which is messing up radarr etc)
-
[Support] selfhosters.net's Template Repository
Any help on Traccar on here? I've downloaded and set it up using traccar.xml but when I start the docker I get: Execution error Server error
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Having a few teething problems with this guide: 1. On a server restart or array restart the mount it says the secure folder already exist If I delete the folder Gmerged/secure/secure its starts correctly - it seems like i've got another 'secure' folder in the secure folder - both have movies, downloads etc in them 2. Radarr and sonarr aredownloading the files ok but are not exporting them out the queue - they seem to be being put in the secure folder in the secure folder. Mount script settings are # REQUIRED SETTINGS RcloneRemoteName="secure" # Name of rclone remote mount WITHOUT ':'. NOTE: Choose your encrypted remote for sensitive data RcloneMountShare="/mnt/user/GDrive" # where your rclone remote will be located without trailing slash e.g. /mnt/user/mount_rclone RcloneMountDirCacheTime="720h" # rclone dir cache time LocalFilesShare="/mnt/user/Glocal" # location of the local files and MountFolders you want to upload without trailing slash to rclone e.g. /mnt/user/local. Enter 'ignore' to disable RcloneCacheShare="/mnt/user0/GDrive" # location of rclone cache files without trailing slash e.g. /mnt/user0/mount_rclone RcloneCacheMaxSize="400G" # Maximum size of rclone cache RcloneCacheMaxAge="336h" # Maximum age of cache files MergerfsMountShare="/mnt/user/GMerged" # location without trailing slash e.g. /mnt/user/mount_mergerfs. Enter 'ignore' to disable DockerStart="nzbget plex sonarr radarr ombi" # list of dockers, separated by space, to start once mergerfs mount verified. Remember to disable AUTOSTART for dockers added in docker settings page MountFolders=\{"downloads/complete,downloads/intermediate,downloads/seeds,movies,tv"\} # comma separated list of folders to create within the mount # Note: Again - remember to NOT use ':' in your remote name above Upload settings are RcloneCommand="move" # choose your rclone command e.g. move, copy, sync RcloneRemoteName="secure" # Name of rclone remote mount WITHOUT ':'. RcloneUploadRemoteName="secure" # If you have a second remote created for uploads put it here. Otherwise use the same remote as RcloneRemoteName. LocalFilesShare="/mnt/user/Glocal" # location of the local files without trailing slash you want to rclone to use RcloneMountShare="/mnt/user/GDrive" # where your rclone mount is located without trailing slash e.g. /mnt/user/mount_rclone MinimumAge="15m" # sync files suffix ms|s|m|h|d|w|M|y ModSort="ascending" # "ascending" oldest files first, "descending" newest files first is the setting RcloneUploadRemoteName="secure" the problem?
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Quick Question - Is it possible to have 2 unraid servers using the same google account at the same time or will it cause problems? Also would you just use the same config file/scripts on each?
-
neeiro joined the community
-
TVheadend plugin for unRaid 6
Just tried this myself (new unraid user) and keep losing settings, will this be fixed or is it best trying the docker?
neeiro
Members
-
Joined
-
Last visited