13.2 Prozessauflistung
Der wichtigste Befehl zum Auflisten von Prozessen ist der Befehl für den Prozess-Status, ps
. Aus historischen Gründen gibt es zwei Varianten von ps
: einen im System V-Stil und einen im BSD-Stil. Viele Systeme stellen beide bereit, obwohl einer von ihnen manchmal Teil eines optionalen Pakets ist. Auf unseren Sun Solaris-Systemen haben wir:
$/bin/ps
Prozess-Status im System V-Stil PID TTY TIME CMD 2659 pts/60 0:00 ps 5026 pts/60 0:02 ksh 12369 pts/92 0:02 bash $/usr/ucb/ps
Prozess-Status im BSD-Stil PID TT S TIME COMMAND 2660 pts/60 O 0:00 /usr/ucb/ps 5026 pts/60 S 0:01 /bin/ksh 12369 pts/92 S 0:02 /usr/local/bin/bash
Ohne Kommandozeilenoptionen sind ihre Ausgaben ziemlich ähnlich, wobei der BSD-Stil ein wenig mehr Details ...
Get Klassische Shell-Programmierung now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.