Skip to content

Commit

Permalink
Deployed 440c3a9 with MkDocs version: 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Nov 16, 2023
1 parent 860037e commit db77adb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Binary file modified sitemap.xml.gz
Binary file not shown.
14 changes: 11 additions & 3 deletions user-guide/data/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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>
Expand Down

0 comments on commit db77adb

Please sign in to comment.