31
edits
mNo edit summary |
|||
| (One intermediate revision by one other user not shown) | |||
| Line 43: | Line 43: | ||
# For example: | # For example: | ||
#rclone mount c3g-data-repos:ihec_data /mnt/ihec_data_objstr --daemon --daemon-wait 0 --allow-other --read-only | #rclone mount c3g-data-repos:ihec_data /mnt/ihec_data_objstr --daemon --daemon-wait 0 --allow-other --read-only | ||
</syntaxhighlight>A service may be used to auto-mount the Object Store on boot with a service file (in /etc/systemd/system/).<syntaxhighlight lang="bash"> | </syntaxhighlight>Unmount with: | ||
<code>fusermount -u /path/to/local/mount</code> | |||
A service may be used to auto-mount the Object Store on boot with a service file (in /etc/systemd/system/).<syntaxhighlight lang="bash"> | |||
# Mount the ihec_data_objstr, even after a restart | # Mount the ihec_data_objstr, even after a restart | ||
[Unit] | [Unit] | ||
| Line 96: | Line 101: | ||
Another way is to lower the maximum number of parts in a multipart upload using [https://rclone.org/s3/#s3-max-upload-parts --s3-max-upload-parts], for example: <code>--s3-max-upload-parts 1000</code>. | Another way is to lower the maximum number of parts in a multipart upload using [https://rclone.org/s3/#s3-max-upload-parts --s3-max-upload-parts], for example: <code>--s3-max-upload-parts 1000</code>. | ||
Note that you need the ram of your computer to be larger | Note that you need the ram of your computer to be larger than chunks. | ||
edits