Slow boot when running rclone systemd service

Thanks for this suggestion, but this did not have any noticeable effect.

A few more comments:

  • Your suggested systemd file returned an error; my guess is that --vfs-fast-fingerprint wants an input (ran into a similar issue before; see my first reply here). However, vfs-fast-fingerprint=true works. The updated systemd file is below.

  • After editing the systemd file, I ran:

systemctl stop rclone-GDrive.service
systemctl disable rclone-GDrive.service
systemctl daemon-reload
systemctl enable rclone-GDrive.service
systemctl start rclone-GDrive.service
  • Running systemctl status rclone-GDrive.service says the service is active with no apparent issues.

  • New systemd file:

[Unit]
Description=rclone-GDrive
AssertPathIsDirectory=/home/monQuee/rclone-GDrive
Wants=network-online.target
After=network-online.target


[Service]
User=monQuee
Group=monQuee
Type=notify
ExecStart=/usr/bin/rclone  \
        --config=/home/monQuee/.config/rclone/rclone.conf \
        --vfs-cache-mode full \
	--vfs-cache-max-size 250G \
	--vfs-fast-fingerprint=true \
	mount GDrive: /home/monQuee/rclone-GDrive
ExecStop=/bin/fusermount -u /home/monQuee/rclone-GDrive
Restart=always
RestartSec=10

[Install]
WantedBy=default.target