Ericsson

Members
  • Posts

    7
  • Joined

  • Last visited

Recent Profile Visitors

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

Ericsson's Achievements

Noob

Noob (1/14)

0

Reputation

  1. With my current setup I can't get hardlinks or atomic-moves to work. Currently Radarr/Sonarr/Lidarr do a copy instead of an instant move. So I would like to setup a new folder structure in order to make it work. The below structure is mounted as folder /data under /mnt/user Deluge will be linked to /mnt/user/data/torrents Sabnzbd will be linked to /mnt/user/data/usenet Completed files will be moved to /mnt/user/data/media Radarr/Sonarr/Lidarr will take the files and move them to /mnt/user/data/gdrive/mount_mergerfs In mount_mergerfs gdrive_vfs1 (movies) gdrive_vfs2 (tv) and gdrive_vfs3 (music). Would the below work? If not any advise on how I should adjust it? data ├── torrents ├── movies ├── music └── tv ├── usenet ├── movies ├── music └── tv └── media ├── movies ├── music └── tv ├── gdrive ├── mount_mergerfs ├── gdrive_vfs1 ├── gdrive_vfs2 ├── gdrive_vfs3 ├── mount_rclone ├── gdrive_vfs1 ├── gdrive_vfs2 ├── gdrive_vfs3
  2. Has anyone been succesfull in adding Deluge (binhex-delugevpn) to NPM? I have all dockers working except this one. It's setup the same as the others. I get the following: No Such Resource No such child resource. Adding the slashes / behind location and port gives me a blank page. But I can see on the tabname Deluge WebUI.
  3. So if I would like to adjust the drive-chunk-size, I do this in the rclone_mount and rclone_upload scripts? This will then override what I have in the rclone config when I created the gdrive remotes?
  4. @DZMM I finally managed to get the mount script and upload script working. Great work on the scripts! One questions I have: Will the upload script use all available upload speed? Or do I have to adjust some settings to my personal Internet connection? I only have 35Mbit/s upload speed. So if my calculation is correct, in theory I could reach 4.375 Mbytes/s. But I am seeing the upload speed with the upload script below 3 Mbytes/s. Should I make any changes to drive-chunk-size or buffer-size? And are the settings in the scripts overriding the once that are in rclone.conf? Thanks for your help!
  5. I am trying to use the rclone_mount, rclone_unmount and rclone_upload scripts but I am having difficulties to see which values I have to adjust to my personal setup. My setup is as following: - remote gdrive1 with encrypted remote secure1 mounted under /mnt/disks/gdrive1 & /mnt/disks/secure1 for movies - remote gdrive2 with encrypted remote secure2 mounted under /mnt/disks/gdrive2 & /mnt/disks/secure2 for tvshows - Completed movie downloads are located in /mnt/disks/192.168.178.38_Downloads/complete-downloads/movies - Completed tvshows downloads are located in /mnt/disks/192.168.178.38_Downloads/complete-downloads/tv So far I have changed the below settings. # REQUIRED SETTINGS RcloneRemoteName=“secure1” RcloneMountShare="/mnt/disks/secure1” LocalFilesShare="/mnt/disks/192.168.178.38_Downloads/complete-downloads/” MergerfsMountShare="/mnt/user/mount_mergerfs" # location without trailing slash e.g. /mnt/user/mount_mergerfs. Enter 'ignore' to disable DockerStart="Plex-Media-Server sonarr radarr sabnzbd" # list of dockers, separated by space, to start once mergerfs mount verified. Remember to disable AUTOSTART for dockers added in docker settings page MountFolders=\{"??"\} # comma separated list of folders to create within the mount Can anyone point me in the right direction? And is there anything additional I need the change?