From 73fd79aa8e92b3e8ac44d1e76cf22c6e5f2fbfd0 Mon Sep 17 00:00:00 2001 From: Milan <milan.danecek@gmail.com> Date: Thu, 10 Aug 2023 11:13:49 +0200 Subject: [PATCH] Add rclone config --- object-storage/rclone.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/object-storage/rclone.md b/object-storage/rclone.md index b291591..3ff83a3 100644 --- a/object-storage/rclone.md +++ b/object-storage/rclone.md @@ -90,7 +90,7 @@ Below you can find the guide for the elementary configuration of rclone tool. Be ### Rclone configuration using the command line !!! warning - To be able to configure the rclone tool using this guide **first, you have to download, unzip and install rclone**, the guide can be found in the [first section](##downloading-and-installation-of-rclone-tool). + To be able to configure the rclone tool using this guide **first, you have to download, unzip and install rclone**, the guide can be found in the [first section](#downloading-and-installation-of-rclone-tool). Rclone has a configuration wizard, which will guide you step-by-step through the configuration of your S3 data storage. @@ -156,7 +156,7 @@ In the last step, we check the configuration and we will confirm it by typing ** ### Rclone configuration using graphical user interface !!! warning - To be able to configure the rclone tool using this guide **first, you have to download, unzip and install rclone**, the guide can be found in the [first section](##downloading-and-installation-of-rclone-tool). + To be able to configure the rclone tool using this guide **first, you have to download, unzip and install rclone**, the guide can be found in the [first section](#downloading-and-installation-of-rclone-tool). Firstly you need to run the GUI. **Windows users** need to open **Command Prompt** and run the command below. **Linux users** need just open the **terminal window** and run the command below. @@ -178,7 +178,7 @@ In the next step, we need to insert **credentials (1)** which we obtained from t !!! warning - Please be careful during the modification in the **Configs** section. Rclone GUI sometimes **does not save the changes** in the configuration. We strongly recommend to cross-check the **[configuration file](###configuration-file)** after saving. + Please be careful during the modification in the **Configs** section. Rclone GUI sometimes **does not save the changes** in the configuration. We strongly recommend to cross-check the **[configuration file](#configuration-file)** after saving. #### Uploading the data from your local machine @@ -189,7 +189,7 @@ In the left menu click on the **Explorer (1)** button. Then select **the name of { style="display: block; margin: 0 auto" } !!! warning - Graphical user interface of rclone DOES NOT SUPPORT creation of empty buckets and directories. If you copy your data from the local machine you have to copy the directory with data. Alternatively, you can prepare empty buckets using [command line](##rclone-basic-controls). + Graphical user interface of rclone **DOES NOT SUPPORT** creation of empty buckets and directories. If you copy your data from the local machine you have to copy the directory with data. Alternatively, you can prepare empty buckets using [command line](#rclone-basic-controls). If you wish to upload your data then in the displayed window click on **upload icon (1)**. Then you can select the data from your disk or drag and drop them into the window. @@ -201,22 +201,22 @@ If you wish to upload your data then in the displayed window click on **upload i ???+ note "Windows config file" C:\Users\DedaLebeda\AppData\Roaming\rclone\rclone.conf<br/> - <br/>[cesnet_s3] - type = s3 - provider = Ceph - access_key_id = my-access-key - secret_access_key = my-secret-key - endpoint = s3.cl2.du.cesnet.cz + <br/>[cesnet_s3]<br/> + type = s3<br/> + provider = Ceph<br/> + access_key_id = my-access-key<br/> + secret_access_key = my-secret-key<br/> + endpoint = s3.cl2.du.cesnet.cz<br/> acl = private -???+ note "Windows config file" - C:\Users\DedaLebeda\AppData\Roaming\rclone\rclone.conf<br/> - <br/>[cesnet_s3] - type = s3 - provider = Ceph - access_key_id = my-access-key - secret_access_key = my-secret-key - endpoint = s3.cl2.du.cesnet.cz - acl = private +???+ note "Linux config file" + ~/.config/rclone/rclone.conf<br/> + <br/>[cesnet_s3]<br/> + type = s3<br/> + provider = Ceph<br/> + access_key_id = my-access-key<br/> + secret_access_key = my-secret-key<br/> + endpoint = s3.cl2.du.cesnet.cz<br/> + acl = private<br/> ## Rclone basic controls -- GitLab