How to kill respawned process by init in linux

2019-05-04 16:41发布

问题:

am respawning the /bin/bash on ttyS1 port.ttyS0 is my console. inittab entry is given below.

::respawn:/bin/bash < /dev/ttyS1 > /dev/ttyS1 2> /dev/ttyS1

My question is how to disable/kill respwning so that i can use serial port for other application.

回答1:

You can kill that bash process like other processes. However, init respawns it immediately - nothing gained.

To disable the process you have to edit /etc/inittab and comment out that line. To inform init about this change you have to send a SIGHUP to init: kill -HUP pid-of-init. (I think that pid-of-init is always 1).

If you need your bash connected to ttyS1 in some circumstances you may want to specify certain runlevels in which init should start bash.

Hope this answer helps... (see man inittab for further information)



回答2:

On my Ubuntu this is what worked for me:

sudo rm -f /etc/init/<proc_name>.conf
sudo initctl stop <proc_name>

It returned a message:

initctl: Method "Get" with signature "ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

but the process was stopped anyway without respawning.



回答3:

inittab have to be reexamine otherwise it will launch the process. Delete the command line link to process on /etc/inittab and execute:

# init q

or

# telinit q

Then , you can kill the process and it will not respawn.