Ubuntu – How to see detailed information about a given PID

command lineprocess

The headline basically says it all. I have a program where I am only given the PID, nothing more really, and I would like to know how I get more information about the given process.

Best Answer

ps -Flww -p THE_PID

will show you some information. See the ps manpage for more information about the ps command. The "STANDARD FORMAT SPECIFIERS" section explains what the different columns mean.