We should consider adding rclone to images, a very useful tool for moving files between various websites and cloud services.
https://rclone.org/commands/rclone_mount/ has the potential to bypass issues like NASA-IMPACT/science-support#13 allowing users to do temporary fuse mounts.
Current install method, due to the general install script wanting to touch /usr/bin it would need sudo. The below method is user doable but only persistent due to home directory mounting. Configurations are written to home directories and usually survive reboots too.
# download
curl https://downloads.rclone.org/v1.73.1/rclone-v1.73.1-linux-amd64.zip --output rclone.zip
# unzip
unzip rclone.zip
# run the tool
./rclone-v1.73.1-linux-amd64/rclone
Options:
- make a script like the above that puts the binary in .local/bin/ for a user ( I can't seem to get a terminal to pick this up on the path - maybe needs reboot?)
- include it by default in the images
- do nothing
We should consider adding rclone to images, a very useful tool for moving files between various websites and cloud services.
https://rclone.org/commands/rclone_mount/ has the potential to bypass issues like NASA-IMPACT/science-support#13 allowing users to do temporary fuse mounts.
Current install method, due to the general install script wanting to touch /usr/bin it would need sudo. The below method is user doable but only persistent due to home directory mounting. Configurations are written to home directories and usually survive reboots too.
Options: