差别
这里会显示出您选择的修订版和当前版本之间的差别。
tech:file_transfer [2022/04/16 09:27] baolitoumu 创建 |
— (当前版本) | ||
---|---|---|---|
行 1: | 行 1: | ||
- | ====== File Transfer ====== | ||
- | |||
- | ==== File Transfer via SFTP ==== | ||
- | |||
- | To transfer files with a graphic user interface (GUI), download an SFTP program like [[https:// | ||
- | |||
- | Create a new SFTP connection using the following settings: | ||
- | |||
- | * Host: '' | ||
- | * Username: '' | ||
- | * Password: '' | ||
- | * Port: '' | ||
- | |||
- | ==== File Transfer via SCP ==== | ||
- | |||
- | To transfer files with a command line interface (CLI), open a terminal and type a command with this syntax | ||
- | |||
- | < | ||
- | scp < | ||
- | </ | ||
- | |||
- | If the source is a directory instead of a file, you need to use '' | ||
- | |||
- | If you want to send an epub file '' | ||
- | |||
- | < | ||
- | scp -v ~/ | ||
- | </ | ||
- | |||
- | If you want to make a quick-and-dirty local backup of your [[https:// | ||
- | |||
- | < | ||
- | scp -rv root@10.11.99.1:/ | ||
- | </ | ||
- | |||
- | It is highly recommended that you [[https:// | ||
- | |||
- | ==== Making Local Backups ==== | ||
- | |||
- | As an alternative (or in addition) to the reMarkable cloud sync backup service, you should back up your system files locally. | ||
- | |||
- | First, make a backup folder: | ||
- | < | ||
- | mkdir -p remarkable-backup/ | ||
- | </ | ||
- | |||
- | Make sure you are connecting over USB instead of WiFi for faster transfers. Then you probably want to back up at least the following, but if you intend to change other system files, feel free to add their paths too. | ||
- | |||
- | All your content (this will likely take the longest, and could be up to 8GB of data): | ||
- | |||
- | < | ||
- | scp -r root@remarkable: | ||
- | </ | ||
- | |||
- | Your configuration file, which also contains your ssh password: | ||
- | |||
- | < | ||
- | scp root@remarkable: | ||
- | </ | ||
- | |||
- | The xochitl binary, if you plan on replacing or modifying it in any way: | ||
- | < | ||
- | scp root@remarkable:/ | ||
- | </ | ||
- | |||
- | ==== Other methods ==== | ||
- | |||
- | The reMarkable community also offers a variety of 3rd party tools: | ||
- | |||
- | * [[https:// | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | * [[http:// | ||
- | * [[https:// | ||
- | |||