InterviewSolution
| 1. |
How Can I Make My Server A Domain? |
|
Answer» creating DAEMON is very simple in Linux. you just need to create a child process from its parent process and KILL the parent process. ALSO you should close all the I/O streams.[as daemon is a BACKGROUND process which is not interactive in nature].latter on you can write a init SCRIPT in /etc/init.d/ to make it a service. creating daemon is very simple in Linux. you just need to create a child process from its parent process and kill the parent process. also you should close all the I/O streams.[as daemon is a background process which is not interactive in nature].latter on you can write a init script in /etc/init.d/ to make it a service. |
|