E: Sub-process /usr/bin/dpkg returned an error code (1)错误解决

http://ubuntuforums.org/showthread.php?t=1598999给出了一种解决方法,

引用:

Here is how I solved this problem.

1) Close>代码:

sudo pkill apt
sudo apt-get clean
sudo pkill apt

3) Start Update Manager and hit "Check".
3a) If you have any updates, install the updates.
4) Close Update Manager.

WARNING: I received this problem when doing an update, even worse, when doing a kernel update. This problem forced only some of the packages to install so a reboot, as some suggest, would spell disaster in my case. Fix your problem before rebooting!

时间: 2024-10-31 11:16:23

E: Sub-process /usr/bin/dpkg returned an error code (1)错误解决的相关文章

Linux:在处理时有错误发生: open-vm-tools,E: Sub-process /usr/bin/dpkg returned an error code (1)

今天遇到了这个错误--真是弄了好久-- 在处理时有错误发生: open-vm-tools open-vm-tools-dkms open-vm-dkms E: Sub-process /usr/bin/dpkg returned an error code (1) 解决办法: sudo apt-get autoremove open-vm-dkms open-vm-tools --purge 这大概就是Linux的魅力了吧-- 一行代码解决一个问题.

dpkg中mysql-server-5.5 (configure)时出错解决办法

在处理时有错误发生: mysql-server-5.5 mysql-serverE: Sub-process /usr/bin/dpkg returned an error code (1) 这个问题刚好之前我遇到过,一段时间一直困扰着我,但是经过我的研究,慢慢摸索,也查阅了相关的资料,终于把这个问题顺利解决了,现在我就把这个问题的解决办法分享给大家,让更多的人知道. 在删除mysql前 需要先删除一下 /var/lib/mysql 还有 /etc/mysql 需要输入以下几条命令:  代码如下

innobackupex: Error: The xtrabackup child process has died at /usr/bin/innobackupex line 2672

Warning: Using unique option prefix open_files instead of open_files_limit is deprecated and will be removed in a future release. Please use the full name instead. xtrabackup version 2.2.3 based on MySQL server 5.6.17 Linux (x86_64) (revision id: ) x

/usr/bin/ld: cannot find -lltdl collect2: ld returned 1 exit status make: *** [sapi/cgi/php-cgi] Err

/usr/bin/ld: cannot find -lltdl collect2: ld returned 1 exit status make: *** [sapi/cgi/php-cgi] Error 1 解决办法:  yum install *ltdl*

LAMP编译:usr bin ld cannot find lltdl 错误的解决办法

文章来源:http://yangsiwei.com/usr-bin-ld-cannot-find-lltdl-%E9%94%99%E8%AF%AF%E7%9A%84%E8%A7%A3%E5%86%B3%E5%8A%9E%E6%B3%95   php在make过程中出现"usr bin ld cannot find lltdl"错误,详细错误如下: /usr/bin/ld: cannot find -lltdl collect2: ld returned 1 exit status ma

linux-Linux 中 /usr/bin/time -f "%U" -a -o data/TestLog100.txt

问题描述 Linux 中 /usr/bin/time -f "%U" -a -o data/TestLog100.txt /usr/bin/time -f "%U" -a -o data/TestLog100.txt -f "%U" -a -o 的含义分别是什么呀? 解决方案 在linux下敲 man time, 里面有详细的说明. freebsd的命令是这样的: -o 是指输出到文件 -a 是指以追加方式写到文件末尾 解决方案二: 使用 man

The path "/usr/bin/gcc" is not valid path to the gcc binary

安装 VMWare tools 时出现"The path "/usr/bin/gcc" is not valid path to the gcc binary" 环境:Vmware 8.0+RedHat 9.0 问题:安装 VMWare tools 时询问GCC安装位置,出现"The path "/usr/bin/gcc" is not valid path to the gcc binary".查询是否安装了GCC,显示确实

【shell 】 test, /usr/bin/test, [ ], 和/usr/bin/[都是等价命令

 test, /usr/bin/test, [ ], 和/usr/bin/[都是等价命令 #!/bin/bash   echo  if test -z "$1"    then      echo "No command-line arguments."    else      echo "First command-line argument is $1."  fi   echo   if /usr/bin/test -z "$1&

docker 容器 后台启动模式 启动时候启动的服务 如何进行 日志重定向,ENTRYPOINT ["/usr/bin/python", "nohup /ABC

问题描述 docker容器后台启动模式启动时候启动的服务如何进行日志重定向,ENTRYPOINT["/usr/bin/python","nohup/ABC.py>xxx.log&"]吗?该问题来自CSDNDocker技术交流群(303806405),由版主xinshubiao整理.