Failed to start rclone.service: Unknown unit: rclone.service

ello ,
I am trying to run Rclone to mount the driver using oneDrive on a vps, but it is giving this error "Failed to start rclone.service: Unknown unit: rclone.service
See system logs and 'systemctl status rclone.service' for details. "When I try to give" systemctl start rclone "

/etc/systemd/system/rclone.service

[Unit]
Description = OneDrive (rclone)
AssertPathIsDirectory = / mnt / medias
After = plexdrive.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 average: // mnt / average
ExecStop = / bin / fusermount -u / mnt / medias
Restart = always
RestartSec = 10

[Install]
WantedBy = default.target

Did you run

systemctl daemon-reload

As that will refresh and should make it available.

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