how to uninstall ifplugd?
i try rename ifplugd ifplugd_old but it says Barewood "ifplugd not allowed while "strict subs in use.
looks like it's in use. How to bring it down and rename it or even delete it?
How to remove ifplugd
depends on which kind of package management system (or Linux distribution) you are using:
YUM (Fedora, RHEL, CentOS)
yum erase ifplugd
APT (Debian, Ubuntu)
apt-get remove ifplugd
ps -aux|grep ifplugd
read the process id of ifplugd , and then
kill -9 process_id
Now, you should be able to uninstall it.