I'm having a weird issue. Sometimes on a quite loaded server i get a bunch of :
# apt-get install sun-java6-jre
[1]+ Stopped apt-get install sun-java6-jre
or even
# (just hitting Return)
[1]+ Stopped apt-get install sun-java6-jre sun-java6-fonts
And then i can't do anything; all that does is returning me this 'stopped' line ...
What does that mean ? Too many processes ? How can i solve this ...
See Job Control
You can use
Note: sometimes people will inadvertently spawn jobs in the background by failing to escape special characters:
instead of
+Stopped
means someone (probably an admin) sent the process aSIGTSTP
(STOP signal) which puts the process on hold (using Job Control). It's the same what happens when you press Ctrl+Z.This can probably be automated to keep runaway processes in check on a loaded server.
To resume the process, try "fg".