4 Nisan 2009 Cumartesi

Show all running processes in Linux

CANLI OLARAK TÜM PROCESS LERİ izlemek için
# top
komutunu kullanınız.

display a tree of processes
pstree shows running processes as a tree. The tree is rooted at either pid or init if pid is omitted. If a user name is specified, all process trees rooted at processes owned by that user are shown.

# pstree


see every process on the system
# ps -A
or
# ps -e

See every process except those running as root
# ps -U root -u root -N

See process run by user cengineer
# ps -u cengineer

Lookup process
Use pgrep command. pgrep looks through the currently running processes and lists the process IDs which matches the selection criteria to screen. For example display firefox process id:

# pgrep firefox

Hiç yorum yok:

Yorum Gönder