=== deng_c is now known as deng [11:45] Hello, how do I disable or set to manual startup mode of daemon on linux? [11:45] I installed sysv-rc-conf and everythings works fine. Say for example I want to disable autostart of postgresql. [11:45] I just unmark the run level from 2-5 to disable it then rebooted the machine. [11:45] After disabling it, I checked data from [11:46] ls -l /etc/rc2.d/ | grep postgre [11:46] there, K20postgresql-9.1 symlink has been renamed from S20postgresql-9.1 [11:46] so I checked [11:46] cat /etc/init.d/rcS | tail -n1 [11:46] So i thought or maybe to disable a daemon on linux is to rename the the file prefix from 'S' to 'K' so that calling from rcS will not invoke it [11:47] Is it a good practice to disable daemon on linux to just rename all symlink daemon [11:47] or [11:47] I will just rename the source file in /etc/init.d/postgresql-9.1 so that symlink's run command will not work?