Rclone 1.62.2 Fatal error: failed to mount FUSE fs:

What is the problem you are having with rclone?

Upgraded to v1.62.2 and getting error when trying to mount on sever; could you please provide steps to downgrade to previous version.

Run the command 'rclone version' and share the full output of the command.

rclone mount --allow-other gdtaz: /home/gdtaz
2023/03/25 13:17:31 Fatal error: failed to mount FUSE fs: fusermount: exec: "fusermount3": executable file not found in $PATH

running version;

rclone v1.62.2

  • os/version: ubuntu 18.04 (64 bit)
  • os/kernel: 4.15.0-206-generic (x86_64)
  • os/type: linux
  • os/arch: amd64
  • go/version: go1.20.2
  • go/linking: static
  • go/tags: none

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

Google Drive

You need to install the fuse3 package.

I think it isn't available for 18.04 but what you can do is symlink fusermount to fusermount3 and that will fix it.

1 Like

hi,
if you need to create the symlink, check out

Great! Thank you for your prompt response, learning as I go.

1 Like

Thank you for your response, install fuse3 and then use this command?

ln -s /bin/fusermount /bin/fusermount3

Could you please expand, read the post, I'm new to this
-install fuse3 on top of fuse and then use the command;
-ln -s /bin/fusermount /bin/fusermount3

if you can install fuse3, then no need for symlink.
if you cannot install fuse3, then need symlink.

1 Like

I have ubuntu 18.04, fuse 3 doesn't work there, I need to symlink.
where do I download fuse3?

correct

https://installati.one/install-fuse3-ubuntu-20-04/

I get this;
root@ns1011594:~# sudo apt install fuse3
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package fuse3 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'fuse3' has no installation candidate

that in an old version of ubuntu, does not support fuse3 as a pre-compiled package.

from what we discussed, you have two choices.
--- create the symink.
--- install fuse3. as documented at the fuse github page.

1 Like

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