You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Storage/Long_Term_Storage/Configuring_s3cmd.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ s3cmd --configure
22
22
23
23
Enter the following details when prompted in the terminal:
24
24
25
-
`Access Key`: Your NeSI user ID
25
+
`Access Key`: Your username
26
26
27
27
`Secret Key`: This is the code from the 1-time link in your Freezer allocation email. Please let us know if you need to <ahref="mailto:[email protected]?subject=Reset%20Freezer%20Secret%20Key">reset this key</a>.
28
28
@@ -31,7 +31,7 @@ Please copy and paste the sections in <span style="color:blue">blue</span>.
31
31
<pre><code>Enter new values or accept defaults in brackets with Enter.
32
32
Refer to user manual for detailed description of all options.
33
33
Access key and Secret key are your identifiers for AWS S3. Leave them empty for using the env variables.
Copy file name to clipboardExpand all lines: docs/Storage/Long_Term_Storage/Freezer_Guide.md
+31-31Lines changed: 31 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Please note that your bucket has the same name as your Freezer allocation. If yo
30
30
List all objects in a bucket.
31
31
32
32
```sh
33
-
s3cmd ls -r -l -H s3://<freezer_bucket>/
33
+
s3cmd ls -r -l -H s3://<freezer-bucket>/
34
34
```
35
35
36
36
This can also be used to list all the objects in path.
@@ -49,8 +49,8 @@ s3cmd la
49
49
### Storage usage by specific bucket
50
50
51
51
```sh
52
-
s3cmd du -H s3://<freezer_bucket>
53
-
7G 1781 objects s3://<freezer_bucket>/
52
+
s3cmd du -H s3://<freezer-bucket>
53
+
7G 1781 objects s3://<freezer-bucket>/
54
54
```
55
55
56
56
`s3cmd du -H` without specifying a bucket is only available for project owners.
@@ -66,33 +66,33 @@ To transfer files/folders to S3 gateway to be archived. `cd` into where the file
66
66
67
67
!!! warning
68
68
69
-
If you have files larger than 10TB you may need to change chunk size, please see the [Large files and Chunk Size](Other_Useful_Commands.md) section for details
69
+
If you have files larger than 10TB you may need to change chunk size, please see the [Large files and chunk size](Other_Useful_Commands.md#large-files-and-chunk-size) section for details
70
70
71
71
```sh
72
-
s3cmd put --verbose your_file s3://<freezer_bucket>/your_directory/your_file
72
+
s3cmd put --verbose your_file s3://<freezer-bucket>/your_directory/your_file
73
73
```
74
74
75
75
```out
76
76
INFO: Cache file not found or empty, creating/populating it.
77
77
INFO: Compiling list of local files...
78
78
INFO: Running stat() and reading/calculating MD5 values on 1 files, this may take some time...
79
79
INFO: Summary: 1 local files to upload
80
-
upload: 'your_file' -> 's3://<freezer_bucket>/your_directory/your_file' [1 of 1]
80
+
upload: 'your_file' -> 's3://<freezer-bucket>/your_directory/your_file' [1 of 1]
81
81
172202 of 172202 100% in 0s 920.89 KB/s done
82
82
```
83
83
84
84
or folders
85
85
86
86
```sh
87
-
s3cmd put --recursive --verbose yourfolder s3://<freezer_bucket>/your_directory/your_folder/
87
+
s3cmd put --recursive --verbose yourfolder s3://<freezer-bucket>/your_directory/your_folder/
88
88
```
89
89
90
90
```out
91
91
INFO: Cache file not found or empty, creating/populating it.
92
92
INFO: Compiling list of local files...
93
93
INFO: Running stat() and reading/calculating MD5 values on 1 files, this may take some time...
94
94
INFO: Summary: 1 local files to upload
95
-
upload: 'yourfolder/your_file' -> 's3://<freezer_bucket>/your_directory/your_folder/yourfolder/yourfile' [1 of 1]
95
+
upload: 'yourfolder/your_file' -> 's3://<freezer-bucket>/your_directory/your_folder/yourfolder/yourfile' [1 of 1]
96
96
172202 of 172202 100% in 0s 1691.71 KB/s done
97
97
```
98
98
@@ -105,7 +105,7 @@ Partially uploaded files will be deleted automatically.
105
105
Synchronize a directory tree to S3 (checks files freshness using size and md5 checksum, unless overridden by options). If you wish to have additional informative output, please use the `--verbose` flag as well.
0 commit comments