包裹处于非常糟糕的不一致状态

包裹处于非常糟糕的不一致状态

我的桌面上有 Ubuntu 13.10。我想安装“D-Link DWR-730”3G 调制解调器驱动程序,但 Ubuntu 的默认自动播放软件显示“内核不支持”。

我运行dpkg -i命令手动安装 .dep 文件,但此后每个apt-get命令都返回错误并告诉我运行apt-get -f install以纠正此问题。

我运行了apt-get -f install,但它仍然返回错误,我无法从 安装任何东西apt-get。apt-get 错误如下:

处理时遇到错误:flashplugin-installer E:子进程 /usr/bin/dpkg 返回错误代码 (1)

我运行了apt-get remove flashplugin-installer,但也返回了错误。

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 3 not upgraded. 1 not fully installed or removed.
Need to get 0 B/7,008 B of archives. After this operation, 0 B of additional disk space will be used. 
dpkg: error processing flashplugin-installer (--configure): Package is in a very bad
inconsistent state - you should reinstall it before attempting configuration.
Errors were encountered while processing: flashplugin-installer
E: Sub-process /usr/bin/dpkg returned an error code (1)

答案1

我尝试了很多方法然后这个成功了!

sudo dpkg --remove --force-all (packagename)

即使在此之后你的问题仍未解决,那么找到/var/lib以你的包名作为前缀的所有文件并使用

sudo chmod 777 filename

对所有它们进行处理,然后创建它们的副本(以防出现问题),然后使用

sudo rm filename

删除它们然后再次运行

sudo dpkg --remove --force-all gcc-4.8-base:i386

答案2

彻底删除 Flash 插件并重新开始工作

sudo dpkg --remove --force-remove-reinstreq  flashplugin-installer

然后您可以尝试再次安装:

sudo apt-get install flashplugin-installer

相关内容