hauber794

Members
  • Posts

    6
  • Joined

  • Last visited

hauber794's Achievements

Noob

Noob (1/14)

0

Reputation

  1. I don't see anything that stands out to me as the issue. Any advice? Plex Media Server Logs_2020-02-11_20-24-56.zip
  2. That fixed my mounting issue (thank you!) but now I'm getting to following when trying to run the custom script: 2019/10/18 22:01:02 ERROR : : error reading destination directory: couldn't list directory: Get https://www.googleapis.com/drive/v3/files?alt=json&fields=files(id%2Cname%2Csize%2Cmd5Checksum%2Ctrashed%2CmodifiedTime%2CcreatedTime%2CmimeType%2Cparents%2CwebViewLink)%2CnextPageToken&includeItemsFromAllDrives=true&pageSize=1000&prettyPrint=false&q=trashed%3Dfalse+and+('root'+in+parents)+and+(name%3D'secure')+and+mimeType%3D'application%2Fvnd.google-apps.folder'&supportsAllDrives=true: oauth2: cannot fetch token: 400 Bad Request Response: { "error": "invalid_grant", "error_description": "Bad Request" } 2019/10/18 22:01:02 INFO : Encrypted drive 'secure:media': Waiting for checks to finish 2019/10/18 22:01:02 INFO : Encrypted drive 'secure:media': Waiting for transfers to finish 2019/10/18 22:01:02 ERROR : Encrypted drive 'secure:media': not deleting files as there were IO errors 2019/10/18 22:01:02 ERROR : Encrypted drive 'secure:media': not deleting directories as there were IO errors 2019/10/18 22:01:02 ERROR : Attempt 1/3 failed with 2 errors and: couldn't list directory: Get https://www.googleapis.com/drive/v3/files?alt=json&fields=files(id%2Cname%2Csize%2Cmd5Checksum%2Ctrashed%2CmodifiedTime%2CcreatedTime%2CmimeType%2Cparents%2CwebViewLink)%2CnextPageToken&includeItemsFromAllDrives=true&pageSize=1000&prettyPrint=false&q=trashed%3Dfalse+and+('root'+in+parents)+and+(name%3D'secure')+and+mimeType%3D'application%2Fvnd.google-apps.folder'&supportsAllDrives=true: oauth2: cannot fetch token: 400 Bad Request Response: { "error": "invalid_grant", "error_description": "Bad Request" } It fails all 3/3 attempts.
  3. I previously had rclone set up successfully to my Google Drive account and was able to backup over 5TB of data. At some point it stopped working and now I'm getting this error when trying to mount rclone: "Fatal error: Directory is not empty: /mnt/disks/secure If you want to mount it anyway use: --allow-non-empty option: readdirent: input/output error" Any ideas on how I can fix this? I set everything up initially following SpaceInvader One's guide. Mount Script: #!/bin/bash #---------------------------------------------------------------------------- #first section makes the folders for the mount in the /mnt/disks folder so docker containers can have access #there are 4 entries below as in the video i had 4 remotes amazon,dropbox, google and secure #you only need as many as what you need to mount for dockers or a network share mkdir -p /mnt/disks/google mkdir -p /mnt/disks/secure #This section mounts the various cloud storage into the folders that were created above. rclone mount --max-read-ahead 1024k --allow-other google: /mnt/disks/google & rclone mount --max-read-ahead 1024k --allow-other secure: /mnt/disks/secure & Config: [google] type = drive scope = drive token = {"access_token":"REMOVED","expiry":"2018-11-19T20:48:47.611614829-08:00"} [secure] type = crypt remote = google:secure filename_encryption = standard directory_name_encryption = true password = REMOVED password2 = REMOVED Rclone Custom Script: #!/bin/bash #---------------------------------------------------------------------------- # Here you can add your own custom script eg. | # rclone copy /local/path remote:path # copies /local/path to the remote | # rclone sync /local/path remote:path # syncs /local/path to the remote | #---------------------------------------------------------------------------- rclone sync -v /mnt/user/media secure:media Unmount Script: #!/bin/bash #---------------------------------------------------------------------------- fusermount -u /mnt/disks/google fusermount -u /mnt/disks/secure Currently running Unraid Version 6.7.2. Thanks in advance for any help!