Win10 Mount rclone - Google Drive: Cannot create WinFsp-FUSE

What is the problem you are having with rclone?

Hello, I really tried my best for making this work with all you're responses from the forum, but I didn't found any solution for it.
So I want to mount on Windows 10, a Google Drive and a WebDAW storage. I tried to install winfsp and rclone even from github, main page and chocolatey. And I runed them from administrator and normal user in PowerShell and CMD. I changed the letters (i'm sure that those drives are not used)
After all the work I tried on a different PC (from work) and it the Mount it Worked from first try, so it looks like I have some problems on my Personal PC, (i did have installed similar apps like Mountain Duck [for WebDAW] and RaiDraive [for Google Drive] and I uninstalled them].
For me looks like I have some problems with WinFSP.
I runed in the same problem:

C:\Program Files\rclone>rclone mount gdrive:/ x:
Cannot create WinFsp-FUSE file system.
The service rclone has failed to start (Status=c0000002).
2020/12/01 11:11:48 ERROR : Google drive root '': Mount failed
2020/12/01 11:11:58 ERROR : mountpoint "x:" didn't became available on mount - continuing anyway
2020/12/01 11:11:58 Fatal error: failed to umount FUSE fs: mount failed

What is your rclone version (output from rclone version)

v1.53.3

  • os/arch: windows/amd64
  • go version: go1.15.5

Which OS you are using and how many bits (eg Windows 7, 64 bit)

Windows 10, 64bit

Which cloud storage system are you using? (eg Google Drive)

Google Drive, WebDAW

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone mount gdrive:/ x:

The rclone config contents with secrets removed.

[gdrive]
type = drive
scope = drive
token = {"access_token":"...","token_type":"Bearer","refresh_token":"...","expiry":"2020-12-01T12:11:46.5687319+02:00"}

A log from the command with the -vv flag

C:\Program Files\rclone>rclone mount gdrive:/ x: -vv
2020/12/01 11:32:39 DEBUG : rclone: Version "v1.53.3" starting with parameters ["rclone" "mount" "gdrive:/" "x:" "-vv"]
2020/12/01 11:32:39 DEBUG : Creating backend with remote "gdrive:/"
2020/12/01 11:32:39 DEBUG : Using config file from "C:\\Users\\mahel\\AppData\\Roaming\\SPB_Data\\.config\\rclone\\rclone.conf"
2020/12/01 11:32:40 DEBUG : Google drive root '': root_folder_id = "0AGv4d2pBnW0-Uk9PVA" - save this in the config to speed up startup
2020/12/01 11:32:40 DEBUG : fs cache: renaming cache item "gdrive:/" to be canonical "gdrive:"
2020/12/01 11:32:40 DEBUG : Google drive root '': Mounting on "x:"
2020/12/01 11:32:40 DEBUG : Google drive root '': Mounting with options: ["-o" "fsname=gdrive:" "-o" "subtype=rclone" "-o" "max_readahead=131072" "-o" "attr_timeout=1" "-o" "atomic_o_trunc" "-o" "uid=-1" "-o" "gid=-1" "--FileSystemName=rclone" "-o" "volname=gdrive"]
2020/12/01 11:32:40 DEBUG : Google drive root '': Init:
2020/12/01 11:32:40 DEBUG : Google drive root '': >Init:
2020/12/01 11:32:40 DEBUG : /: Statfs:
2020/12/01 11:32:40 DEBUG : /: >Statfs: stat={Bsize:4096 Frsize:4096 Blocks:537133056 Bfree:440481301 Bavail:440481301 Files:1000000000 Ffree:1000000000 Favail:0 Fsid:0 Flag:0 Namemax:255}, errc=0
2020/12/01 11:32:40 DEBUG : /: Getattr: fh=0xFFFFFFFFFFFFFFFF
2020/12/01 11:32:40 DEBUG : /: >Getattr: errc=0
2020/12/01 11:32:40 DEBUG : /: Readlink:
2020/12/01 11:32:40 DEBUG : /: >Readlink: linkPath="", errc=-40
Cannot create WinFsp-FUSE file system.
2020/12/01 11:32:40 DEBUG : Google drive root '': Destroy:
2020/12/01 11:32:40 DEBUG : Google drive root '': >Destroy:
The service rclone has failed to start (Status=c0000002).
2020/12/01 11:32:40 ERROR : Google drive root '': Mount failed
2020/12/01 11:32:50 ERROR : mountpoint "x:" didn't became available on mount - continuing anyway
2020/12/01 11:32:50 DEBUG : Calling host.Unmount
2020/12/01 11:32:50 DEBUG : host.Unmount failed
2020/12/01 11:32:50 Fatal error: failed to umount FUSE fs: mount failed

Hi, welcome to the forum!

It seems indeed this may be caused by "conflict" between WinFsp and other installed driver/software.

You could try to mount as network drive.

1 Like

Yeah,
That was it.
So it couldn't be mounted as a internal disk, but it could be mounted as a External Shared Drive, with this code:

rclone mount --vfs-cache-mode full gdrive:/ x: --fuse-flag --VolumePrefix=\server\share

Thank you so much.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.