In linux we have to start a service by issuing commands like
service httpd start or service httpd restart
everytime to start http server.
To make it permanent use the command
ntsysv or setup
To see any particular terminal use
: ntsysv --level 4 Then just use tab to select ur desired service from the service list and that will do. After that it will start that service at startup time.
To see currently which services are ON/OFF in every console then
chkconfig --list | less
To ON the KUDZU service for terminal 0,1,2,6 use command
chkconfig --level 0126 kudzu on
same procedure to off any service.