From bf0efe3ea46b5e17b3a6e5a901e051bd62ecf2da Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Wed, 13 May 2026 02:34:25 +0200 Subject: [PATCH] docs: use only link to vorta docs (address feedback on #9620) --- docs/faq.rst | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index 9575bc233..2584802d3 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -149,25 +149,7 @@ resuming a partial file copy from what's already copied). My SSH connection breaks during a long backup or prune operation. What now? --------------------------------------------------------------------------- -Some ISPs or routers terminate idle SSH connections after a certain period of -inactivity. This can happen during long-running Borg operations like ``create`` -(while chunking large files) or ``prune`` (while processing the repository), -where Borg might be busy locally for a long time without sending or receiving -data over the network. - -To prevent this, you should configure your SSH client to send "keep-alive" -packets periodically. Add the following to your ``~/.ssh/config`` (or to -the ``BORG_RSH`` environment variable):: - - Host * - ServerAliveInterval 60 - ServerAliveCountMax 30 - -This configuration sends a packet every 60 seconds and allows up to 30 missed -packets before closing the connection. - -For more detailed information and alternative solutions, see the -`BorgBase/Vorta FAQ `_. +See the `Vorta documentation `_. My machine goes to sleep causing `Broken pipe` ----------------------------------------------