I'm not sure if Kubuntu has it, but I'd be surprised if it doesn't... but I use
/sbin/chkconfig. Since I don't have postgresql installed on my machine I'll use "mysqld" as an example:
Code:
/sbin/chkconfig --list
(lists all service. use this to find the exact name of service you're interested in)
Code:
/sbin/chkconfig --list mysqld
(shows the runlevels and service status for each runlevel)
Code:
/sbin/chkconfig --level 1-5 mysqld off
(turns mysqld off for all runlevels)
Code:
/sbin/chkconfig --list mysqld
(check your work to make sure it's set as you want it to be)
For more information, check out
man chkconfig.
-fudam