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发行版):
-
YUM (Fedora, RHEL, CentOS)
YUM(Fedora,RHEL,CentOS)
yum erase ifplugd
-
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发行版):
-
YUM (Fedora, RHEL, CentOS)
YUM(Fedora,RHEL,CentOS)
yum erase ifplugd
-
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.
现在,您应该可以卸载它。