[help]how to start inetd from startup script for any logger?

Login as root, edit /etc/profile, adding lines as below:
qconn &
inetd
cpim &
then logout and login as a normal user,
[color=red:51422cacf7]$pidin|grep inetd
$pidin|grep qconn[/color:51422cacf7]
but cpim already runs.
then log out and login as root:
#pidin|grep inetd
4105 1 usr/sbin/inetd 10o SIGSUSPEND
651290 1 usr/sbin/inetd 10r SIGWAITINFO
#pidin|grep qconn
651283 1 usr/sbin/qconn 10r SIGWAITINFO
I also edit /etc/system/sysinit ,adding the same lines but get the
same result.
How to start inetd or qconn from starup for any user?
Thanks a lot!

Hi,

Commands in /etc/rc.d/rc.local will be run for all users.

-Andrew

“johnsonyoung_new” <johntaobao-ebay@yahoo.com-dot-cn.no-spam.invalid> wrote
in message news:difd7r$cif$1@inn.qnx.com

Login as root, edit /etc/profile, adding lines as below:
qconn &
inetd
cpim &
then logout and login as a normal user,
[color=red:51422cacf7]$pidin|grep inetd
$pidin|grep qconn[/color:51422cacf7]
but cpim already runs.
then log out and login as root:
#pidin|grep inetd
4105 1 usr/sbin/inetd 10o SIGSUSPEND
651290 1 usr/sbin/inetd 10r SIGWAITINFO
#pidin|grep qconn
651283 1 usr/sbin/qconn 10r SIGWAITINFO
I also edit /etc/system/sysinit ,adding the same lines but get the
same result.
How to start inetd or qconn from starup for any user?
Thanks a lot!

Thanks a lot! It really works.