I have several error message when I try to mount my cloud drive on my pc.
Run the command 'rclone version' and share the full output of the command.
Release 1.68 last version
Which cloud storage system are you using? (eg Google Drive)
Own hosted.
The command you were trying to run (eg rclone copy /tmp remote:tmp)
rclone mount --vfs-cache-mode full oliver:backup/ x:
Tried also
rclone mount oliver:backup/ x:
and
rclone mount oliver:backup/ *
Always different error messages.
Running on windows unbuntu.
Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.
config works fine
A log from the command that you were trying to run with the -vv flag
CRITICAL: Fatal error: failed to mount FUSE fs: cannot open: x:: open x:: no such file or directory
I have also in the detailed log : poll-interval is not supported by this remote
if I try with the * for next available drive I have this other message :
Command mount needs 2 arguments maximum: you provided 3 non flag arguments:
DEBUG : rclone: Version "v1.68.1" starting with parameters ["rclone" "mount" "oliver:backup/" "x:" "-vv"]
2024/10/25 16:35:36 DEBUG : Creating backend with remote "oliver:backup/"
2024/10/25 16:35:36 DEBUG : Using config file from "/home/usr/.config/rclone/rclone.conf"
2024/10/25 16:35:48 DEBUG : sftp://user@drive.location.me:22/backup/: New connection ipadressposrt->ipadress port 22 to "SSH-2.0-OpenSSH_7.9p1 Debian-10+deb10u3"
2024/10/25 16:35:49 DEBUG :sftp://user@drive.location.me:22/backup/:
Shell type "unix" from config
2024/10/25 16:35:49 DEBUG : sftp://user@drive.location.me:22/backup/: Relative path resolved to "/home11/pakorn/downloads"
2024/10/25 16:35:49 DEBUG : sftp://user@drive.location.me:22/backup/:
Using root directory "/home11/user/backup"
2024/10/25 16:35:49 INFO : sftp://user@drive.location.me:22/backup/:
poll-interval is not supported by this remote
2024/10/25 16:35:49 CRITICAL: Fatal error: failed to mount FUSE fs: cannot open: x:: open x:: no such file or directory
Yes I used WSL to make a try. do you recommend double system boot ? I really like WSL because you can work on Windows while doing my copy paste and backups using rclone at the same time. Not sure this is going to work out with dual boot.
Ok I need to clarify : the mount error messages I pasted on this message are on Unbuntu running on Windows 11 using WSL. I setup Winfsp as described on rclone website.
Mount still not working.
rclone mount oliver:backup/ /mnt// -vv :*
Command mount needs 2 arguments maximum: you provided 9 non flag arguments: ["oliver:/backup" "/mnt/c/" "/mnt/d/" "/mnt/e/" "/mnt/f/" "/mnt/g/" "/mnt/h/" "/mnt/wsl/" "/mnt/wslg/"]
rclone mount oliver:/backup X: -vv
CRITICAL: Fatal error: failed to mount FUSE fs: cannot open: X:: open X:: no such file or directory
rclone mount oliver:/backup D:\shared -vv
Fatal error: failed to mount FUSE fs: cannot open: D:shared: open D:shared: no such file or directory
Below is the official doc from rclone website, as you can see I just followed exactly the guide.
If someone can help me would be much much appreciated
To run rclone mount on Windows, you will need to download and install WinFsp.
WinFsp is an open-source Windows File System Proxy which makes it easy to write user space file systems for Windows. It provides a FUSE emulation layer which rclone uses combination with cgofuse. Both of these packages are by Bill Zissimopoulos who was very helpful during the implementation of rclone mount for Windows.
When mounting as a fixed disk drive you can either mount to an unused drive letter, or to a path representing a nonexistent subdirectory of an existing parent directory or drive. Using the special value * will tell rclone to automatically assign the next available drive letter, starting with Z: and moving backward. Examples:
* *rclone mount remote:path/to/files ** *rclone mount remote:path/to/files X:* *rclone mount remote:path/to/files C:\path\parent\mount* *rclone mount remote:path/to/files X:* *