Questions tagged [rclone]
11 questions
1
vote
0 answers
rclone schedule when to upload local changes to remote
I have dropbox setup using rclone and using systemd user service to mount the cloud storage
[Unit]
Description=Dropbox
AssertPathIsDirectory=/home/s1n7ax/Dropbox/
[Service]
Type=simple
ExecStart=/usr/bin/rclone mount Dropbox:/…
s1n7ax
- 387
- 3
- 12
1
vote
1 answer
Cannot mount rcloned drive because of FUSE error
I wanted to mount my rcloned drive. When I try to mount that rclone using this command:
rclone mount --allow-other Webseries: /webseries
I get the following error:
2022/04/28 21:59:46 mount helper error: fusermount: fuse device not found, try…
Devansh Shrivastava
- 39
- 4
1
vote
0 answers
rclone android (Termux) error: "Fatal error: failed to mount fuse fs: fusermount: signal: bad system call"
I'm in the middle of trying to mount my OneDrive cloud files to my android phone via Termux v0.118.0. I've been able to install rclone and link my remote drive to the phone, where I can confirm commands like rclone lsd remote: work and list all my…
David G.
- 187
- 6
0
votes
1 answer
Starting rclone service via .sh file after network has connected with systemd
I'm trying to get the rclone service to mount a drive as soon as the system has received a network connection on boot/reboot.
So far I have all of the mounting working correctly via terminal. I have written a simple .sh file to execute it which…
jamesrsg
- 3
- 1
0
votes
1 answer
rsync does not append some files
I have mounted dropbox using rclone to /home/user/Dropbox. I'm using rsync to upload the files to dropbox. I have done so around 400GB just using this method.
Today however it uploaded some files and stopped with the summary of the tranfer (no…
s1n7ax
- 387
- 3
- 12
0
votes
0 answers
Fish shell can't change directory over a Webdav resource through Rclone
Fish can't cd into a folder on a Webdav remote directory through Rclone:
Welcome to fish, the friendly interactive shell
Type `help` for instructions on how to use fish
drive ) ls
Documents/ Music/ Videos/
Gem/ Misc/ …
freezr
- 1
0
votes
0 answers
Only able to fix rclone certificate error over ethernet (it won't work over wifi) Why?
rclone will run fine for months at a time. The command I run most often is:
rclone sync {{path/to/file_or_directory}} {{remote_name}}:{{path/to/directory}}
Then - seemingly out of nowhere - I run my rclone sync ... command and get the following…
jophuh
- 1
0
votes
2 answers
Backup fails when sudo runs rclone during an anacron job
I have created a simple backup script that creates .tar.gz of all my important folders and upload it to Google Drive using rclone.
Everything works perfectly fine when I run the script manually. But it seems to be failing when anacron runs it.
I use…
pvs
- 1
- 2
0
votes
1 answer
rclone - warning: shell level (1000) too high, resetting to 1
I am running a bash script that performs rclone on a directory with multiple files. However, the bash command does not finish and I get a repeating warning instead. Below you will find my bash file
#!/bin/bash
echo "starting f2f perf…
marcelomo
- 3
- 3
0
votes
0 answers
Systemd service not running
I modified this script to help me continuously sync a folder to a remote using rclone. The code for said script is posted below. My issue is that on first run, it seemed to be syncing properly, only I was syncing the wrong folder. So I tried killing…
Bob Smith
- 101
- 2
0
votes
2 answers
Copying files from remote securely
I've got a script on a local machine that is meant to copy files to a remote server overnight. I currently do it via scp using unpassworded key, as that was the only way for script to work.
The script is working on a client's machine. Several people…