debian(wheezy)insserv: script **** service *** already provided!

debian升级某个service的时候,弹出了一行warning

insserv: script [email protected]: service cgi already provided!

insserv: script [email protected]: service n_cgi already provided!

看名字是个本地局域网的,为什么会有这个出现?

insserv 是linux用来控制开始启动服务的一个命令, 这说明系统有个脚本在insserv的服务列表里面

#chkconfig --list | grep jane

然后果然找到了在服务里面有2个这个[email protected]的服务.(如果没有chkconfig, apt-get install chkconfig)

#insserv -r [email protected]     移除掉这个服务

发现还是在服务列表里面,

去到/etc/init.d/ 发现有一个脚本文件叫[email protected]

直接rm -rf删除掉即可, 再次insserv发现没有这个了

后结, 同事在她的机器上用了个软链来链接到这个配置文件, 进而关联到我的配置文件. 导致有时候在这个服务连同她的机器时对方电脑网络不通导致错误.

时间: 2024-11-05 20:39:43

debian(wheezy)insserv: script **** service *** already provided!的相关文章

HowTo: Xen 4.1.3 Windows 8 HVM domU with Intel HD4000 VGA Passthrough on Debian Wheezy

http://linux-bsd-sharing.blogspot.com/2012/10/howto-xen-413-windows-8-hvm-domu-with.html Update 05/07/2013:Despite the HowTo being close to 1 year it applies perfectly to this day. At the time Wheezy was Debian's Testing distribution and has since mo

Xfce 触摸板启用“点击”(Debian Wheezy)

问题描述 系统:Debian Wheezy Xfce. 问题:虽然安装了 Xorg 触摸板输入的驱动(synaptics),但是“点击”触摸板中间部分,仍然无法启用其相当于鼠标的“单击”功能. 解决方法 1.首先,保证安装了 synaptics 驱动: $ sudo apt-get install xserver-xorg-input-synaptics 2.复制 /usr/share/X11/xorg.conf.d 到 /etc/X11 $ sudo cp -R /usr/share/X11/

debian(wheezy)gnome-keyring:: couldn't connect to: /home/username/.cache/keyring-XXXXXX/pkcs11

在打开某些应用时,在terminal弹出了一个warning WARNING: gnome-keyring:: couldn't connect to: /home/username/.cache/keyring-XXXXXX/pkcs11: No such file or directory 这个错是你的系统存在多个桌面的时候,你现在不在gnome桌面下,但是引用了某些gnome的组件.导致的一个当前桌面公钥丢失的问题. 解决它很简单. 用编辑器打开 /etc/xdg/autostart/gn

x86_64的debian(wheezy)下使用qemu和busybox运行linux

1.编译kernel 进入源码根目录 make defconfig //这一步生成了默认的内核配置,请参考make help生成的信息. make //这一步生成了bzImage 2.制作根文件系统 dd if=/dev/zero of=rootfs.img bs=1M count=10 //生成了rootfs.img,大小10M mkfs.ext4 rootfs.img //在rootfs.img上制作ext4文件系统 mkdir rootfs sudo mount -t ext4 -o lo

Install Oracle 11gR2 on Debian wheezy(转)

Install Oracle 11gR2 on Debian wheezy 出处:http://gaiustech.wordpress.com/2013/06/26/howto-install-oracle-on-debian-wheezy/ Oracle 11gR2 on Debian still isn’t an officially supported configuration (10g XE was for a while), but it is perfectly do-able w

debian wheezy 7.8无线网卡的安装

Linux xxx 3.2.0-4-686-pae #1 SMP Debian 3.2.65-1+deb7u1 i686 GNU/Linux 前情提要: 我家的minipc安装debian的经过记录 安装完毕后一直用的是有线拨号,wifi一直没用过,今天心血来潮配置下无线. 查找网上很多教程都是有关wpe的,安装测试都不得法导致用不起来,想其以前写过的文档debian7安装和配置小经验,去https://wiki.debian.org/WiFi 找答案. 首先找到 因为我这个是pci模式的网卡,

debian wheezy 安装nginx+hhvm

官网源被墙,可以使用一个国内源进行安装,如果不行,可以参考github的wiki 页面. https://github.com/facebook/hhvm/wiki/Mirror 以debian wheezy安装环境为例. 1.修改软件源 echo "deb http://mirrors.163.com/debian/ wheezy main non-free contrib" > /etc/apt/sources.list echo "deb http://mirro

Python编写的Linux网络设置脚本,Debian Wheezy上测试通过

hon编写的Linux网络设置脚本,Debian Wheezy上测试通过 阿里百川梦想创业大赛,500万创投寻找最赞的APP 技术细节参见Linux网络设置高级指南 注意事项参见程序注释 快速使用指南: 根菜单下,直接回车意味着刷新 其它输入的时候,除了标明特定含义外,直接回车通常意味着取消或者跳过 net-config.py ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

让debian wheezy支持IOS7+的iphone.

IOS更新后, 连上数据线已经不能使用了 想要拷iphone里面的照片只能用itunes吗?  在linux里面这些其实很好办的. 这里我们使用比较新的一个组件libimobiledevice 来支持访问. #apt-get install libimobiledevice-* 安装 然后在iphone里面点allow允许, 接着在文件管理器里面就可以看见了 让debian wheezy支持IOS7+的iphone.