Reputation: 31070
on linux can I show a process's detail including what command/script started it, etc? top is show all processes and I wish to get more information on a process using its id
Upvotes: 9
Views: 15846
Reputation: 173
ps -p <pid> -lF
...will give you information about the process like which command started it, time it was started, its state, parent pid, size etc.
If you can tell in more detail as what all information you want to know about process from pid, then we can help you better.
Upvotes: 16