「Rclone」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(英語版から転載)
 
(typo)
 
(同じ利用者による、間の8版が非表示)
1行目: 1行目:
 
[[en:Rclone]]
 
[[en:Rclone]]
  +
[https://rclone.org/ Rclone] は、クラウドストレージプロバイダーなどのリモートファイルシステム上のファイルを管理するコマンドラインプログラムです。これは、クラウドベンダーの Web ストレージインターフェイスに代わる機能が豊富で、代替手段になりえます。UNIX コマンドの rsync、cp、mv、mount、ls、ncdu、tree、rm、cat に相当する強力なクラウド機能を備えています。
[https://rclone.org/ Rclone] is a command-line program to manage files on remote filesystems like cloud storage providers. It is a feature-rich alternative to cloud vendors' web storage interfaces. It has powerful cloud equivalents to the unix commands rsync, cp, mv, mount, ls, ncdu, tree, rm, and cat.
 
   
  +
次の用途に使用できます。
== Use Cases ==
 
   
  +
* クラウドストレージへのファイルのバックアップ、復元、暗号化、復号化
* Backup (and encrypt) files to cloud storage
 
  +
* 他のクラウドサービスやローカルとの間でデータのミラーリングや移行を行うことができます。
* Restore (and decrypt) files from cloud storage
 
  +
* 複数の、暗号化された、キャッシュされた、または多様なクラウド (またはローカル) ストレージをマウントまたは結合し、''lsf''、''ljson''、''size''、''ncdu'' の使用を可能にします。
* Mirror cloud data to other cloud services or locally
 
* Migrate data to the cloud, or between cloud storage vendors
 
* Mount multiple, encrypted, cached or diverse cloud storage as a disk
 
* Analyse and account for data held on cloud storage using lsf, ljson, size, ncdu
 
* Union file systems together to present multiple local and/or cloud file systems as one
 
   
== Features ==
+
== インストール ==
   
  +
{{Pkg|rclone}} パッケージを [[インストール]] します。
* Transfers
 
* MD5, SHA1 hashes are checked at all times for file integrity
 
* Timestamps are preserved on files
 
* Operations can be restarted at any time
 
* Can be to and from network, e.g. two different cloud providers
 
* Can use multi-threaded downloads to local disk
 
* Copy new or changed files to cloud storage
 
* Sync (one way) to make a directory identical
 
* Move files to cloud storage deleting the local after verification
 
* Check hashes and for missing/extra files
 
* Mount your cloud storage as a network disk
 
* Serve local or remote files over HTTP/WebDav/FTP/SFTP/DLNA
 
* Experimental Web based GUI
 
   
  +
== 使い方 ==
Rclone supports a large number of backend protocols and cloud storage providers. The full list can be found on their website [https://rclone.org/]
 
   
  +
Rclone は、ガイド付き設定スクリプトと使用する多数のコマンドを提供します。
== Installation ==
 
   
  +
=== 設定 ===
[[Install]] the {{Pkg|rclone}} package.
 
   
  +
リモートストレージを構成するには、次のようなガイド付きセットアップを実行するだけです。
== Usage ==
 
   
  +
rclone config
Rclone provides a guided configuration script as well as a large number of commands to be used.
 
   
=== Configuration ===
+
=== コマンド ===
   
  +
リモートストレージを構成すると、サブコマンドを使用してアクセスできるようになります。
To configure a remote storage, simply run the guided setup like this
 
   
  +
リモートの一覧表示:
rclone config
 
  +
  +
$ rclone ls remote:path
  +
  +
{{ic|/local/path}} をリモートにコピーします。
   
  +
$ rclone copy /local/path remote:path
=== Commands ===
 
   
  +
{{ic|/local/path}} をリモートに同期しています:
Once a remote storage is configured, it is possible to access it using subcommands:
 
   
rclone ls remote:path # lists a remote
+
$ rclone sync --interactive /local/path remote:path
rclone copy /local/path remote:path # copies /local/path to the remote
 
rclone sync --interactive /local/path remote:path # syncs /local/path to the remote
 
   
For a full list of available subcommands see the [https://rclone.org/docs/#subcommands documentation]
+
使用可能なサブコマンドの完全なリストについては、[https://rclone.org/docs/#subcommands ドキュメント] を参照してください。
   
  +
=== リモートを FUSE ベースのファイルシステムとしてマウントする ===
=== Mount remote as FUSE-based filesystem ===
 
   
  +
Rclone は、マウントオプションを使用して [[FUSE]] と簡単に統合できます。
Rclone offers easy integration with [[FUSE]] by using the mount option
 
   
 
rclone mount remote:path/to/files /path/to/local/mount
 
rclone mount remote:path/to/files /path/to/local/mount

2023年5月20日 (土) 17:26時点における最新版

Rclone は、クラウドストレージプロバイダーなどのリモートファイルシステム上のファイルを管理するコマンドラインプログラムです。これは、クラウドベンダーの Web ストレージインターフェイスに代わる機能が豊富で、代替手段になりえます。UNIX コマンドの rsync、cp、mv、mount、ls、ncdu、tree、rm、cat に相当する強力なクラウド機能を備えています。

次の用途に使用できます。

  • クラウドストレージへのファイルのバックアップ、復元、暗号化、復号化
  • 他のクラウドサービスやローカルとの間でデータのミラーリングや移行を行うことができます。
  • 複数の、暗号化された、キャッシュされた、または多様なクラウド (またはローカル) ストレージをマウントまたは結合し、lsfljsonsizencdu の使用を可能にします。

インストール

rclone パッケージを インストール します。

使い方

Rclone は、ガイド付き設定スクリプトと使用する多数のコマンドを提供します。

設定

リモートストレージを構成するには、次のようなガイド付きセットアップを実行するだけです。

rclone config

コマンド

リモートストレージを構成すると、サブコマンドを使用してアクセスできるようになります。

リモートの一覧表示:

$ rclone ls remote:path

/local/path をリモートにコピーします。

$ rclone copy /local/path remote:path

/local/path をリモートに同期しています:

$ rclone sync --interactive /local/path remote:path

使用可能なサブコマンドの完全なリストについては、ドキュメント を参照してください。

リモートを FUSE ベースのファイルシステムとしてマウントする

Rclone は、マウントオプションを使用して FUSE と簡単に統合できます。

rclone mount remote:path/to/files /path/to/local/mount