What is the problem you are having with rclone?
i am trying to mount rclone on startup
What is your rclone version (output from rclone version
)
rclone v1.50.1
Which OS you are using and how many bits (eg Windows 7, 64 bit)
ubuntu 18.04.3
Which cloud storage system are you using? (eg Google Drive)
privet ftp share whit crypto
my source's
my config
[Unit]
Description=rclone backup FUSE mount
Documentation=http://rclone.org/docs/
AssertPathIsDirectory=/media/secure
After=networkd-wait-online.service
[Service]
Type=simple
ExecStart=/usr/bin/rclone mount \
--config=/root/.config/rclone/rclone.conf \
--allow-other \
--cache-tmp-upload-path=/tmp/rclone/upload \
--cache-chunk-path=/tmp/rclone/chunks \
--cache-workers=8 \
--cache-writes \
--cache-dir=/tmp/rclone/vfs \
--cache-db-path=/tmp/rclone/db \
--no-modtime \
--drive-use-trash \
--stats=0 \
--checkers=16 \
--bwlimit=40M \
--dir-cache-time=60m \
--cache-info-age=60m secure: /media/secure
ExecStop=/usr/bin/fusermount -uz /media/secure
Restart=always
RestartSec=10
[Install]
Wants=networkd-wait-online.service
error
The unit files have no installation config (WantedBy, RequiredBy, Also, Alias
settings in the [Install] section, and DefaultInstance for template units).
This means they are not meant to be enabled using systemctl.
Possible reasons for having this kind of units are:
- A unit may be statically enabled by being symlinked from another unit's
.wants/ or .requires/ directory. - A unit's purpose may be to act as a helper for some other unit which has
a requirement dependency on it. - A unit may be started when needed via activation (socket, path, timer,
D-Bus, udev, scripted systemctl call, ...). - In case of template units, the unit is meant to be enabled with some
if i mount i via the command (rclone --vfs-cache-mode writes mount secure: /media/secure) it works