Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to start a stopped process in Linux

Tags:

linux

bash

shell

I have a stopped process in Linux at a given terminal. Now I am at another terminal. How do I start that process. What kill signal would I send. I own that process.

like image 701
Ankur Agarwal Avatar asked May 09 '11 22:05

Ankur Agarwal


1 Answers

You can issue a kill -CONT pid, which will do what you want as long as the other terminal session is still around. If the other session is dead it might not have anywhere to put the output.

like image 129
Dave Orr Avatar answered Sep 23 '22 21:09

Dave Orr