Linux – How to prevent a process starting

gentoolinuxprocess

I have synergyc process that starts at boot. How do I prevent this process from starting? I've searched /etc, /etc/init.d for some configs or scripts but found nothing.

Best Answer

Look in /etc/rc.d/* for it..

Also check /etc/rc.local

You could also just add a line to /etc/rc.local, like "killall synergyc" - though if that's called too soon, then it won't help - so you could write a cron script for that. Yeah, it's kinda messy.

Related Question