1
0
mirror of https://github.com/rclone/rclone.git synced 2026-02-14 23:43:55 +00:00

internxt: add Internxt backend - fixes #7610

Co-Authored-By: lullius <lullius@users.noreply.github.com>
Co-Authored-By: StarHack <StarHack@users.noreply.github.com>
This commit is contained in:
jzunigax2
2026-01-27 19:08:22 -06:00
committed by Nick Craig-Wood
parent 49b4ca3412
commit 85d13c4e34
14 changed files with 1306 additions and 14 deletions

View File

@@ -153,6 +153,7 @@ WebDAV or S3, that work out of the box.)
{{< provider name="iCloud Drive" home="https://icloud.com/" config="/iclouddrive/" >}}
{{< provider name="ImageKit" home="https://imagekit.io" config="/imagekit/" >}}
{{< provider name="Internet Archive" home="https://archive.org/" config="/internetarchive/" >}}
{{< provider name="Internxt" home="https://internxt.com/" config="/internxt/" >}}
{{< provider name="Jottacloud" home="https://www.jottacloud.com/en/" config="/jottacloud/" >}}
{{< provider name="IBM COS S3" home="http://www.ibm.com/cloud/object-storage" config="/s3/#ibm-cos-s3" >}}
{{< provider name="IDrive e2" home="https://www.idrive.com/e2/?refer=rclone" config="/s3/#idrive-e2" >}}

View File

@@ -61,6 +61,7 @@ See the following for detailed instructions for
- [HTTP](/http/)
- [iCloud Drive](/iclouddrive/)
- [Internet Archive](/internetarchive/)
- [Internxt](/internxt/)
- [Jottacloud](/jottacloud/)
- [Koofr](/koofr/)
- [Linkbox](/linkbox/)

124
docs/content/internxt.md Normal file
View File

@@ -0,0 +1,124 @@
---
title: "Internxt Drive"
description: "Rclone docs for Internxt Drive"
versionIntroduced: "v1.73"
---
# {{< icon "fas fa-cloud" >}} Internxt Drive
[Internxt Drive](https://internxt.com) is a zero-knowledge encrypted cloud storage service.
Paths are specified as `remote:path`
Paths may be as deep as required, e.g. `remote:directory/subdirectory`.
## Limitations
**Note:** The Internxt backend may not work with all account types. Please refer to [Internxt plan details](https://internxt.com/pricing) or contact [Internxt support](https://help.internxt.com) to verify rclone compatibility with your subscription.
## Configuration
Here is an example of how to make a remote called `internxt`. Run `rclone config` and follow the prompts:
```
No remotes found, make a new one?
n) New remote
s) Set configuration password
q) Quit config
n/s/q> n
name> internxt
Type of storage to configure.
Choose a number from below, or type in your own value
[snip]
XX / Internxt Drive
\ "internxt"
[snip]
Storage> internxt
Option email.
Email of your Internxt account.
Enter a value.
email> user@example.com
Option pass.
Password.
Enter a value.
password>
Edit advanced config?
y) Yes
n) No (default)
y/n> n
Configuration complete.
Options:
- type: internxt
- email: user@example.com
- pass: *** ENCRYPTED ***
Keep this "internxt" remote?
y) Yes this is OK (default)
e) Edit this remote
d) Delete this remote
y/e/d> y
```
If you have two-factor authentication enabled on your Internxt account, you will be prompted to enter the code during login.
### Security Considerations
The authentication process stores your password and mnemonic in the rclone configuration file. It is **strongly recommended** to encrypt your rclone config to protect these sensitive credentials:
```
rclone config password
```
This will prompt you to set a password that encrypts your entire configuration file.
## Usage Examples
```
# List files
rclone ls internxt:
# Copy files to Internxt
rclone copy /local/path internxt:remote/path
# Sync local directory to Internxt
rclone sync /local/path internxt:remote/path
# Mount Internxt Drive as a local filesystem
rclone mount internxt: /path/to/mountpoint
# Check storage usage
rclone about internxt:
```
### Modification times and hashes
The Internxt backend does not support hashes.
Modification times are read from the server but cannot be set. The backend reports `ModTimeNotSupported` precision, so modification times will not be used for sync comparisons.
### Restricted filename characters
The Internxt backend replaces the [default restricted characters
set](/overview/#restricted-characters).
{{< rem autogenerated options start" - DO NOT EDIT - instead edit fs.RegInfo in backend/internxt/internxt.go then run make backenddocs" >}}
### Advanced options
Here are the Advanced options specific to internxt (Internxt Drive).
#### --internxt-skip-hash-validation
Skip hash validation when downloading files.
By default, hash validation is disabled. Set this to false to enable validation.
Properties:
- Config: skip_hash_validation
- Env Var: RCLONE_INTERNXT_SKIP_HASH_VALIDATION
- Type: bool
- Default: true

View File

@@ -39,6 +39,7 @@ Here is an overview of the major features of each cloud storage system.
| HTTP | - | R | No | No | R | R |
| iCloud Drive | - | R | No | No | - | - |
| Internet Archive | MD5, SHA1, CRC32 | R/W ¹¹ | No | No | - | RWU |
| Internxt | - | - | No | No | - | - |
| Jottacloud | MD5 | R/W | Yes | No | R | RW |
| Koofr | MD5 | - | Yes | No | - | - |
| Linkbox | - | R | No | No | - | - |