Q. I've made changes / updates to my /etc/inittab file to configure init process to start with agetty. init reads the /etc/inittab configuration file at the time of system boot. How do I re-read this file without rebooting my Linux server?
A. You need to send HUP single to init process to re-read /etc/inittab on fly using kill command. This is the only way to avoid reboot and make changes to the init configuration take effect immediately.
kill command to send HUP single
Type the command as follows after updating /etc/inittab, enter:
# kill -HUP 1
Please note that init runs as a daemon and typically always has PID 1 on many UNIX / Linux like systems.


{ 3 comments… read them below or add one }
The more robust way to do this is to use
telinit qinit q should do the same
hai
In redhat os we have already configured with runlevel 5 but automatically goes to single usermode
plz ans anyone