How can I get the details of a process in Linux. I want the total execution time, memory map of a process. In this context the process will be a simple Java program. I only know the file name, not the process id. Any help will be appreciated
|
If you know only the program name, and not the process id, you first have to find out which processes (they can be many of them) are running that program. You could use e.g. some of the below commands to find out, assuming the program name is
(notice that if you are using a JVM to run some Java program the You might also use Once you got an interesting pid, e.g. 1234, you could get more information about that process with e.g.:
Look also in other files and directories of The Linux kernel is telling information about processes thru |
||||
|
|
If the process is not already running, then You can find a process by executable using
If you don't like the output format, replace the loop with something else. Here is what this does:
|
|||

