Rclone: Difference between revisions

No edit summary
Line 72: Line 72:


Crypt creates fake remotes (Crypt remotes) which represent decrypted versions of paths in real remotes (e.g. Google Drive).
Crypt creates fake remotes (Crypt remotes) which represent decrypted versions of paths in real remotes (e.g. Google Drive).
==Mount on Startup===
You can mount on startup using a systemd service:
<pre>
# /etc/systemd/system/terpmail.service
[Unit]
Description=rclone terpmail
After=network.target
[Service]
Type=simple
Restart=always
User=david
Group=david
ExecStart=/usr/bin/rclone mount terpmail: ${HOME}/terpmail --vfs-cache-mode full
ExecStop=/bin/fusermount -u ${HOME}/terpmail
[Install]
WantedBy=multi-user.target
</pre>