zoukankan      html  css  js  c++  java
  • dpkg:处理 xxx (--configure)时出错解决办法,也可用于卸载软件出错的情况

    dpkg:处理 xxx (--configure)时出错解决办法

    今早安装nfs时出现问题,找到该文,备份留用。

    然后在网上找到了这片文章,按步骤走就解决了,中间会提示自动卸载一下,执行那个命令就好了,

    我遇到的情况是在ubuntu上使用apt-get安装软件的时候出现如下错误:

    正在设置 nfs-common (1:1.2.2-4ubuntu5) ...
    dpkg:处理 nfs-common (--configure)时出错:
     子进程 已安装 post-installation 脚本 返回了错误号 10
    正在设置 samba-common (2:3.5.8~dfsg-1ubuntu2.3) ...
    dpkg:处理 samba-common (--configure)时出错:
     子进程 已安装 post-installation 脚本 返回了错误号 10
    dpkg:依赖关系问题使得 samba 的配置工作不能继续:
     samba 依赖于 samba-common (= 2:3.5.8~dfsg-1ubuntu2.3);然而:
      软件包 samba-common 尚未配置。
    dpkg:处理 samba (--configure)时出错:
     依赖关系问题 - 仍未被配置
    dpkg:依赖关系问题使得 smbclient 的配置工作不能继续:
     smbclient 依赖于 samba-common (= 2:3.5.8~dfsg-1ubuntu2.3);然而:
      软件包 samba-common 尚未配置。
    dpkg:处理 smbclient (--configure)时出错:
     依赖关系问题 - 仍未被配置
    因为错误消息指示这是由于上一个问题导致的错误,没有写入 apport 报告。
                                                              由于已经达到 MaxReports 限制,没有写入 apport 报告。
                                            在处理时有错误发生:
     nfs-common
     samba-common
     samba
     smbclient
    E: Sub-process /usr/bin/dpkg returned an error code (1)

      虽然出错,但是装的软件还是可以用的,这里好象是由于当时安装samba服务器的时候没有安装好,在网上有一篇文章:

    http://hi.baidu.com/dream__land/blog/item/46dfe6fded06880109244d18.html

    1.$ sudo mv /var/lib/dpkg/info /var/lib/dpkg/info_old //现将info文件夹更名
    2.$ sudo mkdir /var/lib/dpkg/info //再新建一个新的info文件夹
    3.$ sudo apt-get update, apt-get -f install //不用解释了吧
    4.$ sudo mv /var/lib/dpkg/info/* /var/lib/dpkg/info_old //执行完上一步操作后会在新的info文件夹下生成一些文件,现将这些文件全部移到info_old文件夹下
    5.$ sudo rm -rf /var/lib/dpkg/info //把自己新建的info文件夹删掉
    6.$ sudo mv /var/lib/dpkg/info_old /var/lib/dpkg/info //把以前的info文件夹重新改回名字

  • 相关阅读:
    阅读 Android源码的一些姿势
    Unity3d UGUI 界面适配 实例解析 三种适配方式
    Unity3D Android手机开发环境配置
    DOTween教程
    DoTween 部分中文文档
    C# 委托、事件,lamda表达式
    EditText中输入信息的限制的方法
    Android中shape中的属性大全
    Android 高版本API方法在低版本系统上的兼容性处理
    python 绘制f(x)=x^2
  • 原文地址:https://www.cnblogs.com/zhaoxu123/p/6034923.html
Copyright © 2011-2022 走看看