|
|
|
|
|
by Yie1cho
475 days ago
|
|
For me, these are the main use-case differences. 1. if I start something which will run for a long time and/or the connection is unstable, I start a screen session on the remote node and start the program in it 2. if I want to check something (i.e. tail -f foo.log) on several servers at the same time, I start tmux on my machine, create 2,3,...,N panes and in each pane I ssh to the 1-1 remote server and start tail -f foo.log there. So I'll see the logs at the same time on several servers, just like if I had 1-1 monitor for each remote server. |
|