Results 1 to 10 of 16
Help Would Be Nice I Know There I A Command I Just Dunno What......
- 04-18-2005 #1Just Joined!
- Join Date
- Apr 2005
- Posts
- 43
What Do I Type In To Find Out What Programs Are Runnin
Help Would Be Nice I Know There I A Command I Just Dunno What...
- 04-18-2005 #2
from a console, type top, this will list all processes
- 04-18-2005 #3Just Joined!
- Join Date
- Apr 2005
- Posts
- 43
thanx kewl pic btw
- 04-18-2005 #4Linux User
- Join Date
- Oct 2004
- Location
- Serbia&Montenegro
- Posts
- 281
You could also use ps command with ef arguments like:
This also gives you a list of processes with PID and PPID but top gives you how many memory and cpu they are taking.Code:ps -ef
Linux registered user #358842
Human knowledge belongs to the world.
- 04-18-2005 #5no problem and thanks
Originally Posted by L33tLinuxN00b
- 04-18-2005 #6Linux Newbie
- Join Date
- Apr 2005
- Location
- NJ, USA
- Posts
- 104
ps -ax
I use "ps -ax"
My New years Resolution is 1280x1024
- 04-19-2005 #7Just Joined!
- Join Date
- Mar 2005
- Location
- Oklahoma
- Posts
- 38
Me too. I use ps ax or ps aux if I wanna see who's doing what.
- 04-19-2005 #8
also if u know the app u wanna check for:
will work eg to check for firefox:Code:ps aux | grep -i <appname>
the -i in grep says not case sensitiveCode:ps aux | grep -i firefox
"I am not an alcoholic, alcoholics go to meetings"
Registered Linux user = #372327
- 04-19-2005 #9
Just a note to add, the
command will show the processes in real time, this way you can see what has an effect on the CPU usage of a program etc. The problem with top is that it doesn't give a PID number for the program which is usful if you want to kill a program etc.Code:top
Thecommand will list the processes running at the time you type it, so it will not update once programs have been killed or other information about them changes.Code:ps [options]
dylunio
- 04-19-2005 #10i don't know what version you're using, but top gives the PID number aswell as other information no problem
Originally Posted by dylunio

also top is quite usefull to control the processes from, not just list them, it's command line allows you to press k and then enter the PID number to kill the process


Reply With Quote
