backend: add Linkbox backend
Add backend for linkbox.io with read and write capabilities fixes #6960 #6629
This commit is contained in:
parent
168d577297
commit
a466ababd0
11 changed files with 1011 additions and 0 deletions
|
@ -138,6 +138,7 @@ WebDAV or S3, that work out of the box.)
|
|||
{{< provider name="Koofr" home="https://koofr.eu/" config="/koofr/" >}}
|
||||
{{< provider name="Leviia Object Storage" home="https://www.leviia.com/object-storage" config="/s3/#leviia" >}}
|
||||
{{< provider name="Liara Object Storage" home="https://liara.ir/landing/object-storage" config="/s3/#liara-object-storage" >}}
|
||||
{{< provider name="Linkbox" home="https://linkbox.to/" config="/linkbox/" >}}
|
||||
{{< provider name="Linode Object Storage" home="https://www.linode.com/products/object-storage/" config="/s3/#linode" >}}
|
||||
{{< provider name="Mail.ru Cloud" home="https://cloud.mail.ru/" config="/mailru/" >}}
|
||||
{{< provider name="Memset Memstore" home="https://www.memset.com/cloud/storage/" config="/swift/" >}}
|
||||
|
|
|
@ -54,6 +54,7 @@ See the following for detailed instructions for
|
|||
* [Internet Archive](/internetarchive/)
|
||||
* [Jottacloud](/jottacloud/)
|
||||
* [Koofr](/koofr/)
|
||||
* [Linkbox](/linkbox/)
|
||||
* [Mail.ru Cloud](/mailru/)
|
||||
* [Mega](/mega/)
|
||||
* [Memory](/memory/)
|
||||
|
|
76
docs/content/linkbox.md
Normal file
76
docs/content/linkbox.md
Normal file
|
@ -0,0 +1,76 @@
|
|||
---
|
||||
title: "Linkbox"
|
||||
description: "Rclone docs for Linkbox"
|
||||
versionIntroduced: "v1.65"
|
||||
---
|
||||
|
||||
# {{< icon "fa fa-infinity" >}} Linkbox
|
||||
|
||||
Linkbox is [a private cloud drive](https://linkbox.to/).
|
||||
|
||||
## Configuration
|
||||
|
||||
Here is an example of making a remote for Linkbox.
|
||||
|
||||
First run:
|
||||
|
||||
rclone config
|
||||
|
||||
This will guide you through an interactive setup process:
|
||||
|
||||
```
|
||||
No remotes found, make a new one?
|
||||
n) New remote
|
||||
s) Set configuration password
|
||||
q) Quit config
|
||||
n/s/q> n
|
||||
|
||||
Enter name for new remote.
|
||||
name> remote
|
||||
|
||||
Option Storage.
|
||||
Type of storage to configure.
|
||||
Choose a number from below, or type in your own value.
|
||||
XX / Linkbox
|
||||
\ (linkbox)
|
||||
Storage> XX
|
||||
|
||||
Option token.
|
||||
Token from https://www.linkbox.to/admin/account
|
||||
Enter a value.
|
||||
token> testFromCLToken
|
||||
|
||||
Configuration complete.
|
||||
Options:
|
||||
- type: linkbox
|
||||
- token: XXXXXXXXXXX
|
||||
Keep this "linkbox" remote?
|
||||
y) Yes this is OK (default)
|
||||
e) Edit this remote
|
||||
d) Delete this remote
|
||||
y/e/d> y
|
||||
|
||||
```
|
||||
|
||||
{{< rem autogenerated options start" - DO NOT EDIT - instead edit fs.RegInfo in backend/linkbox/linkbox.go then run make backenddocs" >}}
|
||||
### Standard options
|
||||
|
||||
Here are the Standard options specific to linkbox (Linkbox).
|
||||
|
||||
#### --linkbox-token
|
||||
|
||||
Token from https://www.linkbox.to/admin/account
|
||||
|
||||
Properties:
|
||||
|
||||
- Config: token
|
||||
- Env Var: RCLONE_LINKBOX_TOKEN
|
||||
- Type: string
|
||||
- Required: true
|
||||
|
||||
{{< rem autogenerated options stop >}}
|
||||
|
||||
## Limitations
|
||||
|
||||
Invalid UTF-8 bytes will also be [replaced](https://rclone.org/overview/#invalid-utf8),
|
||||
as they can't be used in JSON strings.
|
|
@ -35,6 +35,7 @@ Here is an overview of the major features of each cloud storage system.
|
|||
| Internet Archive | MD5, SHA1, CRC32 | R/W ¹¹ | No | No | - | RWU |
|
||||
| Jottacloud | MD5 | R/W | Yes | No | R | RW |
|
||||
| Koofr | MD5 | - | Yes | No | - | - |
|
||||
| Linkbox | - | R | No | No | - | - |
|
||||
| Mail.ru Cloud | Mailru ⁶ | R/W | Yes | No | - | - |
|
||||
| Mega | - | - | No | Yes | - | - |
|
||||
| Memory | MD5 | R/W | No | No | - | - |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue