I have scp transfer (from one remote server to another), that is quite big.
So maybe I want close the computer from which I executed this command, will this end the transfer? I have ssh access to the shell using the program Bitwise.
|
|
|
If you did not have the foresight to launch the process with nohup, you can also background the process and disown the bash session while it is running.
One disadvantage to this approach is that the file descriptors for stdout and stderr will still contain references to your ssh session's tty. The terminal may hang when you try to exit because of this. You can work around this by typing
The advantage of using Screen is that if the network drops out at any time, your session will remain active, but you must get into the habit of using Screen. Using a scheduler such as |
|||||
|
|
You could use
This will create an output of |
|||
|
|
|
Yes, it will be terminated. The solution to maintain terminal session alive without connectivity is the
|
|||
|
|
|
As said above, you can use the screen command, for example:
|
||||
|
|