2021-04-09 16:57:24 +02:00
|
|
|
|
---
|
|
|
|
|
title: "Uptobox"
|
|
|
|
|
description: "Rclone docs for Uptobox"
|
2022-12-20 21:05:05 +01:00
|
|
|
|
versionIntroduced: "v1.56"
|
2021-04-09 16:57:24 +02:00
|
|
|
|
---
|
|
|
|
|
|
2021-07-20 20:45:41 +02:00
|
|
|
|
# {{< icon "fa fa-archive" >}} Uptobox
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
|
|
|
|
This is a Backend for Uptobox file storage service. Uptobox is closer to a one-click hoster than a traditional
|
|
|
|
|
cloud storage provider and therefore not suitable for long term storage.
|
|
|
|
|
|
|
|
|
|
Paths are specified as `remote:path`
|
|
|
|
|
|
|
|
|
|
Paths may be as deep as required, e.g. `remote:directory/subdirectory`.
|
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
## Configuration
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2021-07-20 20:45:41 +02:00
|
|
|
|
To configure an Uptobox backend you'll need your personal api token. You'll find it in your
|
2021-04-09 16:57:24 +02:00
|
|
|
|
[account settings](https://uptobox.com/my_account)
|
|
|
|
|
|
|
|
|
|
Here is an example of how to make a remote called `remote` with the default setup. First run:
|
|
|
|
|
|
|
|
|
|
rclone config
|
|
|
|
|
|
|
|
|
|
This will guide you through an interactive setup process:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
Current remotes:
|
|
|
|
|
|
|
|
|
|
Name Type
|
|
|
|
|
==== ====
|
|
|
|
|
TestUptobox uptobox
|
|
|
|
|
|
|
|
|
|
e) Edit existing remote
|
|
|
|
|
n) New remote
|
|
|
|
|
d) Delete remote
|
|
|
|
|
r) Rename remote
|
|
|
|
|
c) Copy remote
|
|
|
|
|
s) Set configuration password
|
|
|
|
|
q) Quit config
|
|
|
|
|
e/n/d/r/c/s/q> n
|
|
|
|
|
name> uptobox
|
|
|
|
|
Type of storage to configure.
|
|
|
|
|
Enter a string value. Press Enter for the default ("").
|
|
|
|
|
Choose a number from below, or type in your own value
|
|
|
|
|
[...]
|
|
|
|
|
37 / Uptobox
|
|
|
|
|
\ "uptobox"
|
|
|
|
|
[...]
|
|
|
|
|
Storage> uptobox
|
|
|
|
|
** See help for uptobox backend at: https://rclone.org/uptobox/ **
|
|
|
|
|
|
|
|
|
|
Your API Key, get it from https://uptobox.com/my_account
|
|
|
|
|
Enter a string value. Press Enter for the default ("").
|
|
|
|
|
api_key> xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
|
|
|
Edit advanced config? (y/n)
|
|
|
|
|
y) Yes
|
|
|
|
|
n) No (default)
|
|
|
|
|
y/n> n
|
|
|
|
|
Remote config
|
|
|
|
|
--------------------
|
|
|
|
|
[uptobox]
|
|
|
|
|
type = uptobox
|
|
|
|
|
api_key = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
|
|
|
--------------------
|
|
|
|
|
y) Yes this is OK (default)
|
|
|
|
|
e) Edit this remote
|
|
|
|
|
d) Delete this remote
|
|
|
|
|
y/e/d>
|
|
|
|
|
```
|
|
|
|
|
Once configured you can then use `rclone` like this,
|
|
|
|
|
|
|
|
|
|
List directories in top level of your Uptobox
|
|
|
|
|
|
|
|
|
|
rclone lsd remote:
|
|
|
|
|
|
|
|
|
|
List all the files in your Uptobox
|
|
|
|
|
|
|
|
|
|
rclone ls remote:
|
|
|
|
|
|
|
|
|
|
To copy a local directory to an Uptobox directory called backup
|
|
|
|
|
|
|
|
|
|
rclone copy /home/source remote:backup
|
|
|
|
|
|
2023-11-18 13:36:46 +01:00
|
|
|
|
### Modification times and hashes
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2023-05-03 11:46:54 +02:00
|
|
|
|
Uptobox supports neither modified times nor checksums. All timestamps
|
|
|
|
|
will read as that set by `--default-time`.
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
### Restricted filename characters
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
|
|
|
|
In addition to the [default restricted characters set](/overview/#restricted-characters)
|
|
|
|
|
the following characters are also replaced:
|
|
|
|
|
|
|
|
|
|
| Character | Value | Replacement |
|
|
|
|
|
| --------- |:-----:|:-----------:|
|
|
|
|
|
| " | 0x22 | " |
|
|
|
|
|
| ` | 0x41 | ` |
|
|
|
|
|
|
|
|
|
|
Invalid UTF-8 bytes will also be [replaced](/overview/#invalid-utf8),
|
|
|
|
|
as they can't be used in XML strings.
|
|
|
|
|
|
|
|
|
|
{{< rem autogenerated options start" - DO NOT EDIT - instead edit fs.RegInfo in backend/uptobox/uptobox.go then run make backenddocs" >}}
|
2021-11-01 16:42:05 +01:00
|
|
|
|
### Standard options
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2022-07-09 19:08:20 +02:00
|
|
|
|
Here are the Standard options specific to uptobox (Uptobox).
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2021-07-20 20:45:41 +02:00
|
|
|
|
#### --uptobox-access-token
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
|
Your access token.
|
|
|
|
|
|
|
|
|
|
Get it from https://uptobox.com/my_account.
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2022-03-18 13:29:54 +01:00
|
|
|
|
Properties:
|
|
|
|
|
|
2021-07-20 20:45:41 +02:00
|
|
|
|
- Config: access_token
|
|
|
|
|
- Env Var: RCLONE_UPTOBOX_ACCESS_TOKEN
|
2021-04-09 16:57:24 +02:00
|
|
|
|
- Type: string
|
2022-03-18 13:29:54 +01:00
|
|
|
|
- Required: false
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
|
### Advanced options
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2022-07-09 19:08:20 +02:00
|
|
|
|
Here are the Advanced options specific to uptobox (Uptobox).
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2023-06-30 15:11:17 +02:00
|
|
|
|
#### --uptobox-private
|
|
|
|
|
|
|
|
|
|
Set to make uploaded files private
|
|
|
|
|
|
|
|
|
|
Properties:
|
|
|
|
|
|
|
|
|
|
- Config: private
|
|
|
|
|
- Env Var: RCLONE_UPTOBOX_PRIVATE
|
|
|
|
|
- Type: bool
|
|
|
|
|
- Default: false
|
|
|
|
|
|
2021-04-09 16:57:24 +02:00
|
|
|
|
#### --uptobox-encoding
|
|
|
|
|
|
2022-03-18 13:29:54 +01:00
|
|
|
|
The encoding for the backend.
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
|
See the [encoding section in the overview](/overview/#encoding) for more info.
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2022-03-18 13:29:54 +01:00
|
|
|
|
Properties:
|
|
|
|
|
|
2021-04-09 16:57:24 +02:00
|
|
|
|
- Config: encoding
|
|
|
|
|
- Env Var: RCLONE_UPTOBOX_ENCODING
|
2023-11-26 16:59:12 +01:00
|
|
|
|
- Type: Encoding
|
2021-07-20 20:45:41 +02:00
|
|
|
|
- Default: Slash,LtGt,DoubleQuote,BackQuote,Del,Ctl,LeftSpace,InvalidUtf8,Dot
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
2024-03-10 12:22:43 +01:00
|
|
|
|
#### --uptobox-description
|
|
|
|
|
|
2024-06-14 17:04:51 +02:00
|
|
|
|
Description of the remote.
|
2024-03-10 12:22:43 +01:00
|
|
|
|
|
|
|
|
|
Properties:
|
|
|
|
|
|
|
|
|
|
- Config: description
|
|
|
|
|
- Env Var: RCLONE_UPTOBOX_DESCRIPTION
|
|
|
|
|
- Type: string
|
|
|
|
|
- Required: false
|
|
|
|
|
|
2021-04-09 16:57:24 +02:00
|
|
|
|
{{< rem autogenerated options stop >}}
|
|
|
|
|
|
2021-10-14 15:40:18 +02:00
|
|
|
|
## Limitations
|
2021-04-09 16:57:24 +02:00
|
|
|
|
|
|
|
|
|
Uptobox will delete inactive files that have not been accessed in 60 days.
|
|
|
|
|
|
|
|
|
|
`rclone about` is not supported by this backend an overview of used space can however
|
2021-07-20 20:45:41 +02:00
|
|
|
|
been seen in the uptobox web interface.
|