this post was submitted on 16 Feb 2024
713 points (97.6% liked)

Programmer Humor

31812 readers
513 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 11 points 6 months ago (1 children)

the script stopped running when the SSH session ended

tmux
Always use tmux when possible for remote connections.

[–] [email protected] 2 points 6 months ago (2 children)

What does it do in this case?

[–] [email protected] 10 points 6 months ago* (last edited 6 months ago)

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)

[–] [email protected] 3 points 6 months ago

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.