无法在/ usr / sbin文件夹中重命名ifplugd

时间:2021-02-23 10:33:46

how to uninstall ifplugd?

如何卸载ifplugd?

i try rename ifplugd ifplugd_old but it says Barewood "ifplugd not allowed while "strict subs in use.

我尝试重命名ifplugd ifplugd_old,但它说Barewood“ifplugd不允许”严格的潜艇使用。

looks like it's in use. How to bring it down and rename it or even delete it?

看起来它正在使用中。如何降低它并重命名甚至删除它?

2 个解决方案

#1


1  

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

如何删除ifplugd取决于您使用的是哪种包管理系统(或Linux发行版):

  1. YUM (Fedora, RHEL, CentOS)

    YUM(Fedora,RHEL,CentOS)

    yum erase ifplugd
    
  2. APT (Debian, Ubuntu)

    APT(Debian,Ubuntu)

    apt-get remove ifplugd
    

#2


0  

ps -aux|grep ifplugd 

read the process id of ifplugd , and then

读取ifplugd的进程ID,然后

kill -9 process_id

Now, you should be able to uninstall it.

现在,您应该可以卸载它。

#1


1  

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

如何删除ifplugd取决于您使用的是哪种包管理系统(或Linux发行版):

  1. YUM (Fedora, RHEL, CentOS)

    YUM(Fedora,RHEL,CentOS)

    yum erase ifplugd
    
  2. APT (Debian, Ubuntu)

    APT(Debian,Ubuntu)

    apt-get remove ifplugd
    

#2


0  

ps -aux|grep ifplugd 

read the process id of ifplugd , and then

读取ifplugd的进程ID,然后

kill -9 process_id

Now, you should be able to uninstall it.

现在,您应该可以卸载它。