diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-14 19:02:11 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-14 19:02:11 +0200 |
commit | 6bbb48fadf2265c7ed806027781da8039e561865 (patch) | |
tree | 28c9bdd463917314774508245956b575c0a243c8 | |
parent | e43000f2d46c8d541dc3384e50b80058d1609503 (diff) | |
download | busybox-w32-6bbb48fadf2265c7ed806027781da8039e561865.tar.gz busybox-w32-6bbb48fadf2265c7ed806027781da8039e561865.tar.bz2 busybox-w32-6bbb48fadf2265c7ed806027781da8039e561865.zip |
examples: update var_service/README again
Added "ps -AH e" example
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | examples/var_service/README | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/examples/var_service/README b/examples/var_service/README index 268bb2d43..938cce91d 100644 --- a/examples/var_service/README +++ b/examples/var_service/README | |||
@@ -180,3 +180,57 @@ for non-trivial installations. | |||
180 | var_service/ntpd | 180 | var_service/ntpd |
181 | 181 | ||
182 | Examples of typical network daemons. | 182 | Examples of typical network daemons. |
183 | |||
184 | |||
185 | Process tree | ||
186 | |||
187 | Here is an example of the process tree from a live system with these services | ||
188 | (and a few others). An interesting detail are ftpd and vpnc services, where | ||
189 | you can see only logger process. These services are "downed" at the moment: | ||
190 | their daemons are not launched. | ||
191 | |||
192 | PID TIME COMMAND | ||
193 | 553 0:04 runsvdir -P /var/service | ||
194 | 561 0:00 runsv sshd | ||
195 | 576 0:00 svlogd -tt /var/log/service/sshd | ||
196 | 589 0:00 /usr/sbin/sshd -D -e -p22 -u0 -h /var/service/sshd/ssh_host_rsa_key | ||
197 | 562 0:00 runsv dhcp_eth0 | ||
198 | 568 0:00 svlogd -tt /var/log/service/dhcp_eth0 | ||
199 | 850 0:00 udhcpc -vv --foreground --interface=eth0 | ||
200 | --pidfile=/var/service/dhcp_eth0/udhcpc.pid | ||
201 | --script=/var/service/dhcp_eth0/dhcp_handler -x hostname bbox | ||
202 | 563 0:00 runsv ntpd | ||
203 | 573 0:01 svlogd -tt /var/log/service/ntpd | ||
204 | 845 0:00 busybox ntpd -dddnNl -S ./ntp.script -p 10.x.x.x -p 10.x.x.x | ||
205 | 564 0:00 runsv ifplugd_wlan0 | ||
206 | 598 0:00 svlogd -tt /var/log/service/ifplugd_wlan0 | ||
207 | 614 0:05 ifplugd -apqns -t3 -u0 -d0 -i wlan0 | ||
208 | -r /var/service/ifplugd_wlan0/ifplugd_handler | ||
209 | 565 0:08 runsv dhcp_wlan0_pinger | ||
210 | 911 0:00 sleep 67 | ||
211 | 566 0:00 runsv unscd | ||
212 | 583 0:03 svlogd -tt /var/log/service/unscd | ||
213 | 599 0:02 nscd -dddd | ||
214 | 567 0:00 runsv dhcp_wlan0 | ||
215 | 591 0:00 svlogd -tt /var/log/service/dhcp_wlan0 | ||
216 | 802 0:00 udhcpc -vv -C -o -V --foreground --interface=wlan0 | ||
217 | --pidfile=/var/service/dhcp_wlan0/udhcpc.pid | ||
218 | --script=/var/service/dhcp_wlan0/dhcp_handler | ||
219 | 569 0:00 runsv fw | ||
220 | 570 0:00 runsv ifplugd_eth0 | ||
221 | 597 0:00 svlogd -tt /var/log/service/ifplugd_eth0 | ||
222 | 612 0:05 ifplugd -apqns -t3 -u8 -d8 -i eth0 | ||
223 | -r /var/service/ifplugd_eth0/ifplugd_handler | ||
224 | 571 0:00 runsv zcip_eth0 | ||
225 | 590 0:00 svlogd -tt /var/log/service/zcip_eth0 | ||
226 | 607 0:01 zcip -fvv eth0 /var/service/zcip_eth0/zcip_handler | ||
227 | 572 0:00 runsv ftpd | ||
228 | 604 0:00 svlogd -tt /var/log/service/ftpd | ||
229 | 574 0:00 runsv vpnc | ||
230 | 603 0:00 svlogd -tt /var/log/service/vpnc | ||
231 | 575 0:00 runsv httpd | ||
232 | 602 0:00 svlogd -tt /var/log/service/httpd | ||
233 | 622 0:00 busybox httpd -p80 -vvv -f -h /home/httpd_root | ||
234 | 577 0:00 runsv supplicant_wlan0 | ||
235 | 627 0:00 svlogd -tt /var/log/service/supplicant_wlan0 | ||
236 | 638 0:03 wpa_supplicant -i wlan0 -c /var/service/supplicant_wlan0/wpa_supplicant.conf -d | ||