mirror of
https://github.com/kees-z/DuplicatiDocs.git
synced 2025-04-27 23:42:27 +00:00
Compare commits
5 Commits
6c06cf5fd9
...
09db597be5
Author | SHA1 | Date | |
---|---|---|---|
|
09db597be5 | ||
|
8747ddfccb | ||
|
187225b3c4 | ||
|
f029078a37 | ||
|
21b5484d04 |
@ -111,7 +111,6 @@ The following Cloud Storage Providers are supported natively by Duplicati:
|
||||
* Dropbox
|
||||
* Google Cloud Storage
|
||||
* Google Drive
|
||||
* HubiC
|
||||
* Jottacloud
|
||||
* Mega.nz
|
||||
* Microsoft Office 365 Groups
|
||||
@ -122,7 +121,7 @@ The following Cloud Storage Providers are supported natively by Duplicati:
|
||||
* Rackspace CloudFiles
|
||||
* Rclone
|
||||
* Sia Decentralized Cloud
|
||||
* Tardigrade Decentralized Cloud Storage
|
||||
* Storj (ex Tardigrade) Decentralized Cloud Storage
|
||||
* Tencent COS
|
||||
|
||||
Other supported targets:
|
||||
@ -140,7 +139,7 @@ Duplicati must be installed on a device with a supported operating system. Curre
|
||||
|
||||
Because many devices run on an operating system based on Linux, Duplicati can be installed on some devices that are not personal computers, like a NAS or Raspberry Pi.
|
||||
|
||||
Windows-based devices should have .NET Framework 4.6.2 or higher installed. For Linux and OSX, a recent version of Mono is a requirement.
|
||||
Windows-based devices should have .NET Framework 4.7.1 or higher installed. For Linux and OSX, a recent version of Mono is a requirement.
|
||||
|
||||
Duplicati can make backups of files that are opened by other processes. For Windows, a snapshot of the file system is created using Volume Shadowcopy Services (VSS), LVM is used on Linux Systems. To be able to create a VSS snapshot, Duplicati needs C++ run-time components for Visual Studio 2015 to be installed and must be run with administrator privileges.
|
||||
|
||||
|
@ -43,7 +43,7 @@ To be able to backup files that are in use by another process, Duplicati uses Al
|
||||
*****
|
||||
 Follow this procedure to install Mono on your Linux based system.
|
||||
|
||||
**Ubuntu 20.04 / 20.10:**
|
||||
**Ubuntu 20.04 / 22.04 / 23.10:**
|
||||
```nohighlight
|
||||
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
|
||||
|
||||
@ -214,6 +214,14 @@ Alternatively, you can install Mono using Homebrew:
|
||||
brew install mono
|
||||
```
|
||||
|
||||
To use the tray icon, you currently have to install python3 (you can check that by running /usr/bin/python3) and add pyobjc by hand from a terminal:
|
||||
|
||||
```nohighlight
|
||||
sudo pip3 install pyobjc
|
||||
```
|
||||
|
||||
There is no need to reinstall Duplicati if it's already present.
|
||||
|
||||

|
||||
|
||||
*****
|
||||
|
@ -445,20 +445,6 @@ The authorization token retrieved from [https://duplicati-oauth-handler.appspot.
|
||||
Team drive ID.
|
||||
This option sets the team drive to use. Leaving it empty uses the personal drive.
|
||||
|
||||
## HubiC
|
||||
|
||||
This backend can read and write data to HubiC.
|
||||
|
||||
URL Format:
|
||||
|
||||
`hubic://container/folder`
|
||||
|
||||
Options:
|
||||
|
||||
* `--authid (Password)`
|
||||
The authorization code.
|
||||
The authorization token retrieved from [https://duplicati-oauth-handler.appspot.com?type=hubic](https://duplicati-oauth-handler.appspot.com?type=hubic)
|
||||
|
||||
## Jottacloud
|
||||
|
||||
This backend can read and write data to Jottacloud using it's REST protocol.
|
||||
@ -784,33 +770,33 @@ Options:
|
||||
* `--use-ssl`
|
||||
Use this flag to communicate using Secure Socket Layer (SSL) over http (https).
|
||||
|
||||
## Tardigrade Decentralized Cloud Storage
|
||||
## Storj (ex Tardigrade) Decentralized Cloud Storage
|
||||
|
||||
This backend can read and write data to the Tardigrade Decentralized Cloud Storage.
|
||||
This backend can read and write data to the Storj Decentralized Cloud Storage.
|
||||
|
||||
Supported options:
|
||||
|
||||
* `--tardigrade-auth-method (String)`
|
||||
* `--storj-auth-method (String)`
|
||||
The authentication method
|
||||
The authentication method describes which way to use to connect to the network - either via API key or via an access grant.
|
||||
Default value: `API key`
|
||||
* `--tardigrade-satellite (String)`
|
||||
* `--storj-satellite (String)`
|
||||
The satellite
|
||||
The satellite that keeps track of all metadata. Use a Tardigrade-grade server for high-performance SLA-backed connectivity or use a community server. Or even host your own.
|
||||
Default value: `us-central-1.tardigrade.io:7777`
|
||||
* `--tardigrade-api-key (String)`
|
||||
The satellite that keeps track of all metadata. Use a Storj-grade server for high-performance SLA-backed connectivity or use a community server. Or even host your own.
|
||||
Default value: `us1.storj.io:7777`
|
||||
* `--storj-api-key (String)`
|
||||
The API key
|
||||
The API key grants access to a specific project on your chosen satellite. Head over to the dashboard of your satellite to create one if you do not already have an API key.
|
||||
* `--tardigrade-secret (Password)`
|
||||
* `--storj-secret (Password)`
|
||||
The encryption passphrase
|
||||
The encryption passphrase is used to encrypt your data before sending it to the tardigrade network. This passphrase can be the only secret to provide - for Tardigrade you do not necessary need any additional encryption (from Duplicati) in place.
|
||||
* `--tardigrade-shared-access (String)`
|
||||
The encryption passphrase is used to encrypt your data before sending it to the storj network. This passphrase can be the only secret to provide - for Storj you do not necessary need any additional encryption (from Duplicati) in place.
|
||||
* `--storj-shared-access (String)`
|
||||
The access grant
|
||||
An access grant contains all information in one encrypted string. You may use it instead of a satellite, API key and secret.
|
||||
* `--tardigrade-bucket (String)`
|
||||
* `--storj-bucket (String)`
|
||||
The bucket
|
||||
The bucket where the backup will reside in.
|
||||
* `--tardigrade-folder (String)`
|
||||
* `--storj-folder (String)`
|
||||
The folder
|
||||
The folder within the bucket where the backup will reside in.
|
||||
|
||||
@ -821,10 +807,6 @@ Object storage (Cloud Object Storage, COS) is a distributed storage service for
|
||||
|
||||
Supported options:
|
||||
|
||||
* `--tardigrade-auth-method (String)`
|
||||
The authentication method
|
||||
The authentication method describes which way to use to connect to the network - either via API key or via an access grant.
|
||||
Default value: `API key`
|
||||
* `--cos-app-id (String)`
|
||||
Account ID
|
||||
Account ID of Tencent Cloud Account
|
||||
@ -840,3 +822,7 @@ Cloud API Secret Key
|
||||
* `--cos-bucket (String)`
|
||||
Bucket
|
||||
Bucket, format: BucketName-APPID
|
||||
* `--cos-storage-class (String)`
|
||||
Storage class
|
||||
Storage class of the object (do not use ARCHIVE types)
|
||||
|
||||
|
@ -127,7 +127,7 @@ Usage:
|
||||
`<protocol>://<username>:<password>@<path>`
|
||||
|
||||
Supported protocols are:
|
||||
`aftp`, `amzcd`, `azure`, `b2`, `box`, `cloudfiles`, `dropbox`, `file`, `ftp`, `googledrive`, `gcs`, `hubic`, `jottacloud`, `mega`, `onedrive`, `openstack`, `s3`, `od4b`, `mssp`, `ssh`, `tahoe`, `webdav`
|
||||
`aftp`, `amzcd`, `azure`, `b2`, `box`, `cloudfiles`, `dropbox`, `file`, `ftp`, `googledrive`, `gcs`, `jottacloud`, `mega`, `onedrive`, `openstack`, `s3`, `od4b`, `mssp`, `ssh`, `tahoe`, `webdav`
|
||||
|
||||
Use one or more of the following command line options:
|
||||
|
||||
@ -223,7 +223,7 @@ The following commands are supported:
|
||||
`GET`, `PUT`, `LIST`, `DELETE`, `CREATEFOLDER`
|
||||
|
||||
The supported protocols are:
|
||||
`aftp`, `amzcd`, `azure`, `b2`, `box`, `cloudfiles`, `dropbox`, `file`, `ftp`, `googledrive`, `gcs`, `hubic`, `jottacloud`, `mega`, `onedrive`, `openstack`, `s3`, `od4b`, `mssp`, `ssh`, `tahoe`, `webdav`
|
||||
`aftp`, `amzcd`, `azure`, `b2`, `box`, `cloudfiles`, `dropbox`, `file`, `ftp`, `googledrive`, `gcs`, `jottacloud`, `mega`, `onedrive`, `openstack`, `s3`, `od4b`, `mssp`, `ssh`, `storj', `tahoe`, `webdav`
|
||||
|
||||
Example:
|
||||
`LIST ftp://user:pass@server/folder`
|
||||
|
@ -6,14 +6,14 @@
|
||||

|
||||
|
||||
|
||||
2023/10/11
|
||||
2024/01/08
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Copyright © 2018-2023 by The Duplicati Team.
|
||||
Copyright © 2018-2024 by The Duplicati Team.
|
||||
|
||||
The information in this document is subject to change without notice. Although every precaution has been taken in the preparation of this book, The Duplicati Team assumes no responsibility for errors and omissions. Nor is any liability assumed for damages resulting from the information contained herein.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user