Google Drive With Rclone Cache, Crypt and Plex (Help)

I’m doing exactly what it say’s here (https://bytesized-hosting.com/pages/rclone-gdrive).
And I can’t seem to find my encrypted videos on my plex.

I also downloaded rclone browser and I mounted my videos in the gcrypt remote through the GUI
and I can see my videos are encrypted in gcache and gdrive remote.

Not sure what’s going on here, please help

Can you share your config (with passwords and keys removed) and your mount command?

[gdrive]
type = drive
scope = drive
token = (removed)

[gcache]
type = cache
remote = gdrive:/gdrive
plex_url = (removed)
plex_username = (removed)
plex_password = (removed)
chunk_size = 5M
info_age = 1d
chunk_total_size = 10G

[gcrypt]
type = crypt
remote = gcache:/crypt
filename_encryption = standard
directory_name_encryption = true
password = (removed)
password2 = (removed)

C:\rclone> rclone mount --allow-other --allow-non-empty gcrypt: ~/mnt/gdrive &
panic: cgofuse: cannot find winfsp

goroutine 62 [running]:
github.c*m/ncw/rclone/vendor/github.com/billziss-gh/cgofuse/fuse.(*FileSystemHost).Mount(0xc00012d8c0, 0xc00002a110, 0xc, 0xc00006b180, 0x13, 0x14, 0x72676f7470797200)
C:/gopath/src/github.com/ncw/rclone/vendor/github.com/billziss-gh/cgofuse/fuse/host.go:1153 +0x4f3
github.com/ncw/rclone/cmd/cmount.mount.func1(0xc00012d8c0, 0xc00002a110, 0xc, 0xc00006b180, 0x13, 0x14, 0x13b74e0, 0xc0003885a0, 0xc000055b00)
C:/gopath/src/github.com/ncw/rclone/cmd/cmount/mount.go:149 +0x71
created by github.com/ncw/rclone/cmd/cmount.mount
C:/gopath/src/github.com/ncw/rclone/cmd/cmount/mount.go:147 +0x3cf

I’m not a windows guy but it looks like you are missing something related to fuse with the:

panic: cgofuse: cannot find winfsp

Seems like you to install WinFSP: https://github.com/billziss-gh/winfsp

1 Like

So this happened after installing WinFSP,

C:\rclone>rclone mount --allow-other --allow-non-empty gcrypt: ~/mnt/gdrive &
Cannot create WinFsp-FUSE file system: invalid mount point.
2018/10/17 19:12:42 ERROR : Encrypted drive ‘gcrypt:’: Mount failed
2018/10/17 19:12:42 Fatal error: failed to mount FUSE fs: mount stopped before calling Init: mount failed

You seem to be following a Unix guide but are on a Windows machine.

I think you need to change the ~/mnt/gdrive to a drive lettter / folder name you want to mount to.

Where am I suppose to mount to? My google drive? Sorry

I’d assume pick an unused drive letter to mount it to.

ok so I created a virtual disk drive and assigned it to “G”
then in the command prompt I wrote,

rclone>rclone mount --allow-other --allow-non-empty gcrypt: G:\

and got this… I don’t think I wrote the code right…

C:\rclone>rclone mount --allow-other --allow-non-empty gcrypt: G:
Cannot create WinFsp-FUSE file system: mount point in use.
2018/10/17 21:40:29 ERROR : Encrypted drive ‘gcrypt:’: Mount failed
2018/10/17 21:40:29 Fatal error: failed to mount FUSE fs: mount stopped before calling Init: mount failed

It looks like you already have something mounted on the G: as it says it is already in use.

@alex_chan:
Don’t create virtual drives or something like that. Just use an empty, unassigned drive letter like q:.

rclone mount gcrypt:/ q:

nothing more.