「Rclone」の版間の差分
ナビゲーションに移動
検索に移動
(一部翻訳) |
(英語版に同じくリダイレクト化) タグ: 新規リダイレクト |
||
(他の1人の利用者による、間の8版が非表示) | |||
1行目: | 1行目: | ||
+ | #REDIRECT[[アプリケーション一覧/インターネット#マルチプロトコルクライアント]] |
||
− | [[en:Rclone]] |
||
− | [https://rclone.org/Rclone] は、クラウドストレージプロバイダーなどのリモートファイルシステム上のファイルを管理するコマンドラインプログラムです。これは、クラウドベンダーの Web ストレージインターフェイスに代わる機能が豊富で、代替手段になりえます。UNIX コマンドの rsync、cp、mv、mount、ls、ncdu、tree、rm、cat に相当する強力なクラウド機能を備えています。 |
||
− | |||
− | == 使用例 == |
||
− | |||
− | * ファイルをクラウドストレージにバックアップ (および暗号化) |
||
− | * クラウドストレージからファイルを復元 (および復号化) |
||
− | * クラウドデータを他のクラウドサービスまたはローカルにミラーリングします |
||
− | * クラウドへの、またはクラウドストレージベンダー間でのデータの移行 |
||
− | * 複数の暗号化、キャッシュ化された、または多様なクラウドストレージをディスクとしてマウント |
||
− | * lsf、ljson、size、ncdu を使用してクラウドストレージに保持されているデータを分析および説明します |
||
− | * ファイルシステムを統合して、複数のローカルファイルシステムやクラウドファイルシステムを 1 つとして表示します |
||
− | |||
− | == 特徴 == |
||
− | |||
− | * 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/] |
||
− | |||
− | == Installation == |
||
− | |||
− | [[Install]] the {{Pkg|rclone}} package. |
||
− | |||
− | == Usage == |
||
− | |||
− | 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 |
||
− | |||
− | === Commands === |
||
− | |||
− | Once a remote storage is configured, it is possible to access it using subcommands: |
||
− | |||
− | rclone ls remote:path # lists a remote |
||
− | 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] |
||
− | |||
− | === Mount remote as FUSE-based filesystem === |
||
− | |||
− | Rclone offers easy integration with [[FUSE]] by using the mount option |
||
− | |||
− | rclone mount remote:path/to/files /path/to/local/mount |