treechicken@lemmy.world to Programmer Humor@lemmy.ml · 1 year agoFirewalllemmy.worldimagemessage-square74fedilinkarrow-up1731arrow-down118
arrow-up1713arrow-down1imageFirewalllemmy.worldtreechicken@lemmy.world to Programmer Humor@lemmy.ml · 1 year agomessage-square74fedilink
minus-squareu/lukmly013 💾 (lemmy.sdf.org)@lemmy.sdf.orglinkfedilinkEnglisharrow-up11·1 year ago the script stopped running when the SSH session ended tmux Always use tmux when possible for remote connections.
minus-squareu/lukmly013 💾 (lemmy.sdf.org)@lemmy.sdf.orglinkfedilinkEnglisharrow-up10·edit-21 year agoWell, the script could keep running even after he would have detached from that tmux session due to losing ssh connection. And since that script would unblock all ports after 30 seconds… (Same use case as nohup that they mentioned)
minus-squareJasonDJ@lemmy.ziplinkfedilinkarrow-up3·1 year agoTmux essentially creates a pseudo-shell that persists between sessions. So you can start a process, detach the session, start something else, disconnect, come back next week, and check on it. It does other things too. Like console tiling.
tmux
Always use tmux when possible for remote connections.
What does it do in this case?
Well, the script could keep running even after he would have detached from that tmux session due to losing ssh connection. And since that script would unblock all ports after 30 seconds…
(Same use case as nohup that they mentioned)
Tmux essentially creates a pseudo-shell that persists between sessions.
So you can start a process, detach the session, start something else, disconnect, come back next week, and check on it.
It does other things too. Like console tiling.