0

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?

lilzz
  • 5,243
  • 14
  • 59
  • 87

2 Answers2

1

How to remove ifplugd depends on which kind of package management system (or Linux distribution) you are using:

  1. YUM (Fedora, RHEL, CentOS)

    yum erase ifplugd
    
  2. APT (Debian, Ubuntu)

    apt-get remove ifplugd
    
Lee Duhem
  • 14,695
  • 3
  • 29
  • 47
0
ps -aux|grep ifplugd 

read the process id of ifplugd , and then

kill -9 process_id

Now, you should be able to uninstall it.

brokenfoot
  • 11,083
  • 10
  • 59
  • 80