Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • What happens if I force terminate a SSH session. Does it remain open on the server? For how long? Commented Aug 7, 2013 at 9:43
  • A similar question to that was asked on SuperUser: superuser.com/questions/143925/… Commented Aug 7, 2013 at 9:48
  • How do I resume a job after pausing it? Commented Aug 7, 2013 at 9:51
  • You use the fg command (which defaults to %1, or you can specify the process number - as listed in jobs - as a argument). You can also tell the process to resume "in the background" (as though you issued the command with the & operative) with the bg command. Commented Aug 7, 2013 at 10:05