1837108 Members
2391 Online
110112 Solutions
New Discussion

Current foreground procs

 
Prashant Zanwar_4
Respected Contributor

Current foreground procs

I have a process started inb foreground. and kind of stuck, wanna move home.
Any way to make this process a background procs
Thx
Prashant
"Intellect distinguishes between the possible and the impossible; reason distinguishes between the sensible and the senseless. Even the possible can be senseless."
3 REPLIES 3
Alex Lavrov.
Honored Contributor

Re: Current foreground procs

Ctrl+Z is not working?

Alex.
I don't give a damn for a man that can only spell a word one way. (M. Twain)
Raj D.
Honored Contributor

Re: Current foreground procs

Hi Prasant,

Have u started with nohup..
then u can exit..

else no idea so far..

cheers,
" If u think u can , If u think u cannot , - You are always Right . "
Sandman!
Honored Contributor

Re: Current foreground procs

Try stopping the foreground process by sending it a Ctrl-Z. In case process suspend signal is not set to ^Z then determine what its set to:

# stty -a

Look for what "susp =
# stty susp '^Z'

cheers!