Files
rclone/docs/content/internxt.md
2026-01-30 16:02:50 +00:00

3.1 KiB

title, description, versionIntroduced
title description versionIntroduced
Internxt Drive Rclone docs for Internxt Drive v1.73

{{< icon "fas fa-cloud" >}} Internxt Drive

Internxt Drive 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 or contact Internxt support 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.

{{< 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