What is the problem you are having with rclone?
After mounting dropbox or mega cloud disk, turn off the computer agent. After waiting for a few minutes, the system will be stuck and cannot be moved. Is there no timeout set?
Run the command 'rclone version' and share the full output of the command.
rclone v1.64.2
Which cloud storage system are you using? (eg Google Drive)
DropBox、Mega
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
Call the following function:
// Mount the remote at mountpoint
func (m *MountPoint) Mount() (daemon *os.Process, err error) {
// Ensure sensible defaults
m.SetVolumeName(m.MountOpt.VolumeName)
m.SetDeviceName(m.MountOpt.DeviceName)
// Start background task if --daemon is specified
if m.MountOpt.Daemon {
daemon, err = daemonize.StartDaemon(os.Args)
if daemon != nil || err != nil {
return daemon, err
}
}
m.VFS = vfs.New(m.Fs, &m.VFSOpt)
m.ErrChan, m.UnmountFn, err = m.MountFn(m.VFS, m.MountPoint, &m.MountOpt)
if err != nil {
return nil, fmt.Errorf("failed to mount FUSE fs: %w", err)
}
m.MountedOn = time.Now()
return nil, nil
}
The rclone config contents with secrets removed.
[dropbox1700557499]
type = dropbox
token = XXXX
token_url = XXXX
org_token_url=XXX
What have you done
Disconnect the computer agent, wait for a few minutes, execute the df command in the background and find that the system is stuck.