Seite 1 von 1

Anzahl Porzesse normal ?

Verfasst: Sa 22 Apr 2006, 15:19
von c3po
Hallo,
dies ist ein Liste aller Prozesse meiner Box nach ungefähr 2 Stunden Betriebszeit:

UID PID PPID C STIME TTY TIME CMD
root 1 0 0 13:30 ? 00:00:04 init
root 2 1 0 13:30 ? 00:00:00 [keventd]
root 3 1 0 13:30 ? 00:00:00 [ksoftirqd_CPU0]
root 4 1 0 13:30 ? 00:00:00 [kswapd]
root 5 1 0 13:30 ? 00:00:00 [bdflush]
root 6 1 0 13:30 ? 00:00:00 [kupdated]
root 7 1 0 13:30 ? 00:00:00 [mtdblockd]
root 9 1 0 13:30 ? 00:00:00 init
root 10 9 0 13:30 ? 00:00:00 /bin/sh /etc/init.d/rcS
root 13 1 0 13:30 ? 00:00:00 [jffs2_gcd_mtd3]
root 28 1 0 13:30 ? 00:00:00 [cifsoplockd]
root 36 1 0 13:30 ? 00:00:00 /sbin/inetd
root 94 10 0 13:30 ? 00:00:00 /bin/sh /etc/init.d/start_neut
root 96 1 0 13:30 ? 00:00:00 /bin/sectionsd
root 98 96 0 13:30 ? 00:00:00 /bin/sectionsd
root 99 98 0 13:30 ? 00:00:00 /bin/sectionsd
root 100 98 7 13:30 ? 00:12:16 /bin/sectionsd
root 101 98 0 13:30 ? 00:00:00 /bin/sectionsd
root 102 98 0 13:30 ? 00:00:00 /bin/sectionsd
root 103 98 0 13:30 ? 00:00:00 /bin/sectionsd
root 104 98 0 13:30 ? 00:00:00 /bin/sectionsd
root 105 1 0 13:30 ? 00:00:00 /bin/timerd
root 106 105 0 13:30 ? 00:00:00 /bin/timerd
root 109 106 0 13:30 ? 00:00:00 /bin/timerd
root 110 1 0 13:30 ? 00:00:00 [kdvb-fe-0:0]
root 111 1 0 13:30 ? 00:00:00 /bin/zapit
root 114 1 0 13:30 ? 00:00:00 /var/bin/camd2
root 117 1 0 13:30 ? 00:00:00 /bin/controld
root 118 117 0 13:30 ? 00:00:00 /bin/controld
root 120 118 0 13:30 ? 00:00:00 /bin/controld
root 121 1 0 13:30 ? 00:00:01 /bin/nhttpd
root 122 94 0 13:30 ? 00:00:15 /bin/neutrino -u -f
root 123 122 0 13:31 ? 00:00:00 /bin/neutrino -u -f
root 124 123 0 13:31 ? 00:00:03 /bin/neutrino -u -f
root 129 123 0 13:31 ? 00:00:00 /bin/neutrino -u -f
root 137 1 0 16:11 ? 00:00:00 [rpciod]
root 138 36 0 16:14 ? 00:00:00 telnetd
root 139 138 1 16:14 pts/0 00:00:00 -sh
root 142 139 0 16:15 pts/0 00:00:00 ps -ef

Ist die Anzahl der /bin/neutrino, /bin/sectionsd, /bin/timerd, /bin/controld normal? Warum sind diese Prozesse mehrfach vorhanden?

Gruß
C3PO

Verfasst: Sa 22 Apr 2006, 23:17
von DrStoned
Das ist normal, ich kenne das nicht anders, seit ich Linux auf der Box habe. Warum allerdings manche Prozesse mehrfach auftauchen, kann ich Dir jetzt auch nicht sagen, da müsste mal jemand antworten, der sich besser als ich damit auskennt.

Verfasst: So 23 Apr 2006, 11:22
von robspr1
Für tuxmaild könnte das wie folgt erklärt werden:

Du startest den daemon, dann hast du

* einen Prozess der regelmässig die emails abholt
* einen Prozess der für die Kommunikation zum Plugin verantwortlich ist
* einen Prozess der auf Signale (kill -HUP etc.) reagiert

also siehst du 3 tuxmaild prozesse :)

Re: Anzahl Porzesse normal ?

Verfasst: Mo 24 Apr 2006, 11:04
von gmo18t
c3po hat geschrieben: Ist die Anzahl der /bin/neutrino, /bin/sectionsd, /bin/timerd, /bin/controld normal? Warum sind diese Prozesse mehrfach vorhanden?
diese Programme laufen jeweils in mehreren "Threads", wobei dann jeder Thread quasi als eigener Prozess in der Taskliste angezeigt wird. Das ist halt noch eine Kompromisslösung der 2.4er Version des Linux Kernels. Im 2.6er Kernel wird nur noch der Prozess selbst angezeigt und die Threads nur dann, wenn passende Optionen mit 'ps' übergeben werden.

- GMo -