Click to See Complete Forum and Search --> : two simple questions


The Anti-Void
06-13-2001, 10:22 PM
how can i get a listing of processes that are running in another virtual console and also how do i kill them? for example say i'm working in #1(ctrl-alt-f1) and somethings locked up in #2. how do i kill the thing in #2 from #1?

also i'm having problems shutting down kde to the console since something its trying to run afterward and freezing up. it says "starting windows [failed]" (probably has to do w/ wine)" what file do i have to edit to take this out?

EscapeCharacter
06-13-2001, 10:26 PM
ps aux will show all the precesses running and kill and killall can be used to kill them when they freeze

trekker
06-13-2001, 11:28 PM
"ps -u <username>" will show all the processes started by the user specified by the <username>.

The first column shows the process id (pid). To kill that particular process, type "kill <pid>"

Sorry, I do not know how to solve your second question. :(

HTH :)