-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed 440c3a9 with MkDocs version: 1.5.3
- Loading branch information
Unknown
committed
Nov 16, 2023
1 parent
860037e
commit db77adb
Showing
3 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1802,10 +1802,18 @@ <h3 id="scp-command">scp command</h3> | |
the <code>source</code> should be the absolute path of the file/directory being | ||
copied or the command should be executed in the directory containing the | ||
source file/directory.</p> | ||
<div class="admonition tip"> | ||
<p class="admonition-title">Tip</p> | ||
<p>If your local version of OpenSSL (the library underlying <code>scp</code>) is | ||
very new you may see errors transferring data to Cirrus using <code>scp</code> where the version | ||
of OpenSSL is older. The errors typically look like | ||
<code>scp: upload "mydata": path canonicalization failed</code>. You can get | ||
around this issue by adding the <code>-O</code> option to <code>scp</code>.</p> | ||
</div> | ||
<p>If you want to request a different encryption algorithm add the | ||
<code>-c [algorithm-name]</code> flag to the <code>scp</code> options. For example, to use the | ||
(usually faster) <em>arcfour</em> encryption algorithm you would use:</p> | ||
<pre><code>scp [options] -c arcfour source [email protected]:[destination] | ||
(usually faster) <em>aes128-ctr</em> encryption algorithm you would use:</p> | ||
<pre><code>scp [options] -c aes128-ctr source [email protected]:[destination] | ||
</code></pre> | ||
<p>(Remember to replace <code>user</code> with your Cirrus username in the example | ||
above.)</p> | ||
|
@@ -1830,7 +1838,7 @@ <h3 id="rsync-command">rsync command</h3> | |
source file/directory.</p> | ||
<p>Additional flags can be specified for the underlying <code>ssh</code> command by | ||
using a quoted string as the argument of the <code>-e</code> flag. e.g.</p> | ||
<pre><code>rsync [options] -e "ssh -c arcfour" source [email protected]:[destination] | ||
<pre><code>rsync [options] -e "ssh -c aes128-ctr" source [email protected]:[destination] | ||
</code></pre> | ||
<p>(Remember to replace <code>user</code> with your Cirrus username in the example | ||
above.)</p> | ||
|