Link to home
Start Free TrialLog in
Avatar of xinex
xinex

asked on

wake-up process,kill command



 i am using mandrake 6.0 on telnet.when i press ctrl+z and stop the program i cant re-run program.i can view program with jobs or ps but  i cant re-run program.also how can terminate a program with kill command.
Avatar of liddler
liddler
Flag of Ireland image

re-run it with fg (foreground)
to kill it, the first number returned by ps is the PID, type
kill <PID>
or if that failes
kill -9 <PID>
Avatar of xinex
xinex

ASKER

thats really good , how can i find more command option from net.(instead of using $man or $info )
www.tldp.org - will give you Guides (free networked books:-), HOWTOs (Nice "I've done this, and it works for me" style documents... or even quite indepth elaborations on different topics) ... and lots more, including man-pages-turned-html:-).

-- Glenn
ASKER CERTIFIED SOLUTION
Avatar of Tintin
Tintin

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The process is still running, it is just in the background. You can see background processes by using the "bg" command. To place the process back in the foreground, use the "fg" command.