Mount hangs on "using config file"

What is the problem you are having with rclone?

mount command is hanging and needs to be manually terminated

What is your rclone version (output from rclone version)

1.54.1

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

debian 10 64 bit

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

google drive team drive.

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

rclone mount RR: ~/RR --daemon

The rclone config contents with secrets removed.

[RR]
type = drive
client_id = redacted
client_secret = redacted
scope = drive
token = {"access_token":"redacted","token_type":"Bearer","refresh_token":"redacted","expiry":"2021-03-12T09:31:42.450015146Z"}
team_drive = redacted
root_folder_id =

A log from the command with the -vv flag

2021/03/12 08:50:06 DEBUG : rclone: Version "v1.54.1" starting with parameters ["rclone" "-vv" "mount" "RR:" "/home/nate/RR"]
2021/03/12 08:50:06 DEBUG : Creating backend with remote "RR:"
2021/03/12 08:50:06 DEBUG : Using config file from "/home/nate/.config/rclone/rclone.conf"

the verbose logging isn't giving me a concise reason on why this is failing. I can list the files in that remote with ls, but I can't mount. Maybe a dependency issue? Thank you for reading and any help you can provide.

If you use daemon, it makes it run in the background so you wouldn't see anything else because it runs in the background.

felix@gemini:~$ rclone mount gcrypt: /home/felix/test -vv --daemon
2021/03/12 07:12:27 DEBUG : rclone: Version "v1.54.1" starting with parameters ["rclone" "mount" "gcrypt:" "/home/felix/test" "-vv" "--daemon"]
2021/03/12 07:12:27 DEBUG : Creating backend with remote "gcrypt:"
2021/03/12 07:12:27 DEBUG : Using config file from "/opt/rclone/rclone.conf"
2021/03/12 07:12:27 DEBUG : Creating backend with remote "GD:crypt"
2021/03/12 07:12:28 DEBUG : rclone: Version "v1.54.1" finishing with parameters ["rclone" "mount" "gcrypt:" "/home/felix/test" "-vv" "--daemon"]
felix@gemini:~$ ps -ef | grep test
felix    3738238       1  3 07:12 ?        00:00:00 rclone mount gcrypt: /home/felix/test -vv --daemon
felix    3738300 2887138  0 07:12 pts/0    00:00:00 grep --color=auto test
felix@gemini:~$

You want to use a log file or something if you want to see what happens after that.

hello and welcome to the forum,

["rclone" "-vv" "mount" "RR:" "/home/nate/RR"]
the mount command does not return to the command prompt after execution.
it continues to run, so you can access the mounted folder - /home/nate/RR
you might need to add --allow-other to the rclone mount command

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