|
ps -A will show all processes. try this from a different console if you can't open xterm or another graphical shell (use ctrl alt f2 for convenience, ctrl alt f6 or ctrl alt f7 should put you back into your x session (windowed gui)) kill -9 xxxx where xxxx is the pid (process id number) of what you want to shut down. this will kill child processes of what you kill. for example, someapp has three separate windows on your screen, input, output and config. kill -9 someapp's pid and all three windows die.you can only kill if you own the process, unless you are root, whcih is not something to take lightly.do not worry about logging in twice or more as the same user, this is allowed by linux and similar systems. if you CAN open other stuff in your x session, then xkill will give you a kill cursor. hold this over a window or whatever and click. this will kill that windows process. you can easily kill your taskbar, so be careful. can't remember where kde stores it's per user settings, it may be /home/username/Desktop or therabouts. it will be a hidden file, one that is preceeded by a period such as /home/username/Desktop/.kde/.kdeconfig
Last edited by paul9; 10-28-2003 at 01:26 PM.
|