Category Archives: Processes commands

slabtop

to be investigated

Processes commands

nice

Starts a process with a custom priority. The default “nice level” is 0. Runs command with minimum priority (when noting else runs) nice -n 20 command Runs command with maximum priority nice -n -19 command

Processes commands

top

Parameter calls Top a certain process by PID top -p PID Top a certain user top -u user Runtime commands f choose fields listed o changes the display order O change the sort by column <> move sort field R … Continue reading

Processes commands

pstree

Lists all processes unde the form of a tree Lists the structure in ASCII form (otherwise it’ll probably get listed in a nasty form) pstree -A By default the processes are listed in a compact form (i.e.: no threads). To … Continue reading

Processes commands

ps

Options -e show all proccesses -f full description -F extra full -u user list only processes belonging to user –forest lists processes as a tree structure -T show the threads with SPID -L show the threads with LWP/NLWP columns -C … Continue reading

Processes commands

pgrep

Listing processes after owner: pgrep -u `owner` Listing processes with a certain command name (name), long format pgrep -l List the oldest (and newest) process of the selected one pgrep -o name pgrep -n name

Processes commands