OK ... I want to know if there is a problem with rclone mount & pcloud.
Can't understand why it took more then 12 hours to mount just a fraction of my data.
Is that normal?
The amount of my data at pcloud is approx 650 GB.
What you are telling me is that the mount is working OK acording to the debug log ... with the speed rate it will take several days to complete the mount ... something seems wrong to me.
What does "complete the mount" mean? You start rclone mount and according to your logs all is working and mount is ready to be used. It will be up and running until you stop it. After 1 min or after 1 week - does not matter.
rclone mount command does not stop on its own (unless some problems). The way you run it will occupy one shell session "forever". If you want to hide it you have few options. Push it to the background (&), use --daemon flag or package everything in systemd service.
The best option is systemd IMO - even if at the first look it seems complicated it is worth to learn how to use systemd. It is extremely flexible and allows very close and granular control.
Here you are some HowTo:
It talks about oneddrive but you can easily change it to whatever other remote you use.
OK ... now I understand that you were confused by my post.
I thought that 'rclone mount' command stoped by its own and I was expecting a prompt from shell session ... now I understand that is not the case.
I then ran sudo systemctl daemon-reload sudo systemctl enable pcloud
with no issues.
But then I had some problems to start the service pcloud
sudo systemctl start pcloud
Job for pcloud.service failed because the control process exited with error code.
See "systemctl status pcloud.service" and "journalctl -xeu pcloud.service" for details.
systemctl status pcloud.service
● pcloud.service - RClone Service
Loaded: loaded (/etc/systemd/system/pcloud.service; enabled; preset: disabled)
Drop-In: /usr/lib/systemd/system/service.d
└─10-timeout-abort.conf, 50-keep-warm.conf
Active: activating (auto-restart) (Result: exit-code) since Tue 2024-12-31 15:09:12 CET; 7s ago
Invocation: 359e263eefa44450bfb7af325f63eec6
Process: 23069 ExecStart=/usr/bin/rclone mount pCloudDrive: /home/forsete/pCloudDrive --allow-other --allow-non-empty --dir-cache-time 5000h --vfs-cache-mode full --volname pCl>
Main PID: 23069 (code=exited, status=217/USER)
Mem peak: 1.2M
CPU: 4ms
Dec 31 15:09:12 asus-nuc systemd[1]: Failed to start pcloud.service - RClone Service.
journalctl -xeu pcloud.service 3 ↵
░░
░░ A start job for unit pcloud.service has begun execution.
░░
░░ The job identifier is 41192.
Dec 31 15:10:13 asus-nuc (rclone)[23191]: pcloud.service: Failed to determine user credentials: No such process
Dec 31 15:10:13 asus-nuc (rclone)[23191]: pcloud.service: Failed at step USER spawning /usr/bin/rclone: No such process
░░ Subject: Process /usr/bin/rclone could not be executed
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The process /usr/bin/rclone could not be executed and failed.
░░
░░ The error number returned by this process is 3.
Dec 31 15:10:13 asus-nuc systemd[1]: pcloud.service: Main process exited, code=exited, status=217/USER
░░ Subject: Unit process exited
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ An ExecStart= process belonging to unit pcloud.service has exited.
░░
░░ The process' exit code is 'exited' and its exit status is 217.
Dec 31 15:10:13 asus-nuc systemd[1]: pcloud.service: Failed with result 'exit-code'.
░░ Subject: Unit failed
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ The unit pcloud.service has entered the 'failed' state with result 'exit-code'.
Dec 31 15:10:13 asus-nuc systemd[1]: Failed to start pcloud.service - RClone Service.
░░ Subject: A start job for unit pcloud.service has failed
░░ Defined-By: systemd
░░ Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
░░
░░ A start job for unit pcloud.service has finished with a failure.
░░
░░ The job identifier is 41192 and the job result is failed.
Where have I missed ... only thing that i didn't include from the instruction was
cache-dir rclonecache
The command sudo systemctl start pcloud gives following output but no log-file.
Job for pcloud.service failed because the control process exited with error code.
See "systemctl status pcloud.service" and "journalctl -xeu pcloud.service" for details.
But if I ran ExecStart= from a terminal window I get the log-file and no error as above.
and it worked without any issues ... even after reboot.
I find it strange that these comments from the example one was recommended to follow should disturb the process.