zoukankan      html  css  js  c++  java
  • dpkg: error processing package XXX (--configure) 解决方法 (ubuntu右上角红色警告)

    在 Ubuntu 执行 sudo apt-get upgrade 时,出现了如下的报错:

    Setting up bluez (4.101-0ubuntu13.1) ...
    reload: Job is not running: dbus
    invoke-rc.d: initscript dbus, action "force-reload" failed.
    start: Job failed to start
    invoke-rc.d: initscript bluetooth, action "start" failed.
    dpkg: error processing package bluez (--configure):
     subprocess installed post-installation script returned error exit status 1
    dpkg: dependency problems prevent configuration of bluez-alsa:i386:
     bluez-alsa:i386 depends on bluez; however:
      Package bluez is not configured yet.
     
    dpkg: error processing package bluez-alsa:i386 (--configure):
     dependency problems - leaving unconfigured
    No apport report written because the error message indicates its a followup error from a previous failure.
                              Errors were encountered while processing:
     bluez
     bluez-alsa:i386
    E: Sub-process /usr/bin/dpkg returned an error code (1)

     或者

    Errors were encountered while processing:
     cups-browsed
    E: Sub-process /usr/bin/dpkg returned an error code (1)

    通过执行下面的命令可以解决该问题:

    $ sudo mv /var/lib/dpkg/info/ /var/lib/dpkg/info_old/
    $ sudo mkdir /var/lib/dpkg/info/
    $ sudo apt-get update
    ...
    $ sudo apt-get -f install
        Reading package lists... Done
        Building dependency tree
        Reading state information... Done
        0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
        7 not fully installed or removed.
        After this operation, 0 B of additional disk space will be used.
        Setting up bluez (4.101-0ubuntu13.1) ...
        Setting up blueman (1.23-git201403102151-1ubuntu1) ...
        Setting up bluetooth (4.101-0ubuntu13.1) ...
        Setting up bluez-alsa:amd64 (4.101-0ubuntu13.1) ...
        Setting up bluez-alsa:i386 (4.101-0ubuntu13.1) ...
        Setting up bluez-gstreamer (4.101-0ubuntu13.1) ...
        Setting up bluez-utils (4.101-0ubuntu13.1) ...
    $ sudo mv /var/lib/dpkg/info/* /var/lib/dpkg/info_old/
    $ sudo rm -rf /var/lib/dpkg/info
    $ sudo mv /var/lib/dpkg/info_old/ /var/lib/dpkg/info/

    输入上述命令之后,在执行 sudo apt-get update 和 sudo apt-get upgrade 就不会有问题了。

    转自:http://blog.csdn.net/heray1990/article/details/47803541

  • 相关阅读:
    HTTP GET方法与POST方法有什么区别
    uniapp的pages.json之subPackages、preloadRule——分包
    爬虫与Python:(一)网络爬虫概念篇——7.Session和Cookie
    标签<view>文字自动换行
    CSS之flex布局
    爬虫与Python:(一)网络爬虫概念篇——6.HTTP基本原理
    uniapp 之使用分包——起源于微信错误码——800051
    爬虫与Python:(一)网络爬虫概念篇——3.爬虫的基本结构和工作流程
    爬虫与Python:(一)网络爬虫概念篇——4.爬虫策略
    水印解决方案专题
  • 原文地址:https://www.cnblogs.com/hei-hei-hei/p/11903847.html
Copyright © 2011-2022 走看看