NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
Plukkie
Nov 28, 2007Aspirant
How to startup custom services at boottime automatically
Hi, I just installed my first piece of code on the NV+, a streaming daemon "kissd". I wonder how I can get this service startup automatic at bootime on the Infrant? I discovered there's only one...
gknippels
Dec 06, 2007Aspirant
Plukkie,
What I did to add (your) program to start up automatically at boot is:
create a small script called kissdx :
#!/bin/sh
/usr/sbin/kissdx -d -c /etc/kissdx.conf
store it in the directory /etc/init.d/
then call from that same directory
update-rc.d kissd defaults 20
This command will add it to the scripts for startup.
In case you would like to remove it simply type:
update-rc.d -f kissd remove
P.S. You also need to disable kissd (the old version you made available) because it uses the same port.
Let me know if you need further help. Thanks again for the nice programs.
Guido
What I did to add (your) program to start up automatically at boot is:
create a small script called kissdx :
#!/bin/sh
/usr/sbin/kissdx -d -c /etc/kissdx.conf
store it in the directory /etc/init.d/
then call from that same directory
update-rc.d kissd defaults 20
This command will add it to the scripts for startup.
In case you would like to remove it simply type:
update-rc.d -f kissd remove
P.S. You also need to disable kissd (the old version you made available) because it uses the same port.
Let me know if you need further help. Thanks again for the nice programs.
Guido
Related Content
NETGEAR Academy
Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!