cd /var/lib/dpkg sudo mv info info.bak sudo mkdir infosudo apt-get install shotwel…
$ sudo su //root权限 $ sudo mv /var/lib/dpkg/info /var/lib/dpkg/info_old //现将info文件夹更名 $ sudo mkdir /var/lib/dpkg/info //再新建一个新的info文件夹 //更新 $ sudo apt-get update $ apt-get -f install $ sudo mv /var/lib/dpkg/info/* /var/lib/dpkg/info_old //执行完更新操作后会在in…
[转]ubuntu错误解决E: Sub-process /usr/bin/dpkg returned an error code (1) http://yanue.net/post-123.html 在用apt-get安装软件时出现了类似于install-info: No dir file specified; try –help for more information.dpkg:处理 gettext (–configure)时出错: 子进程 post-installation script…
Ubuntu16.04上将系统自带的python3.5升级到3.6 安装aioredis时提示Python版本需>=3.5.3,所以进行升级命令如下: $ sudo add-apt-repository ppa:jonathonf/python-3.6 $ sudo apt-get update $ * 注意,安装python3.6的时候一定要加*,将3.6所需的依赖库也一起装上 注意,python3.5不要卸载,卸载会损坏系统. # 移除原3.4link $ sudo rm /usr/bin/…
Ubuntu系统安装软件时报以下错误: E: Sub-process /usr/bin/dpkg returned an error code (1) 解决: mv /var/lib/dpkg/info /var/lib/dpkg/info_old mkdir /var/lib/dpkg/info apt update apt -f install mv /var/lib/dpkg/info/* /var/lib/dpkg/info_old rm -rf /var/lib/dpkg/info m…
我的debian7之前安装了mysql-server,是通过apt安装的,后来我卸载掉, 然后用whereis mysql查找, 把所有关于mysql的目录删除掉,包括带mysqld的目录及文件. 重新安装mysql,安装过程中没有提示错误,也没有提示要输入root密码之类的, 完成后 ,通过whereis mysql无法找到安装的文件,which mysql也无法找到,运行提示无mysql命令....请问这个问题该如何解决. 这是我在其它平台上提的问题,可惜没有人回答,最后自己多次搜索尝试终于…
在用apt-get安装软件时出现了类似于 install-info: No dir file specified; try –help for more information.dpkg:处理 gettext (–configure)时出错: 子进程 post-installation script 返回了错误号 1 在处理时有错误发生: findutils E: Sub-process /usr/bin/dpkg returned an error code (1) 第一种方法: sudo m…
如题,本人在安装samba等软件的时候,在命令行敲入: sudo apt-get install samba4命令的时候,系统在下载之后报错,大致内容如下: ~$ sudo apt-get install apache2[sudo] password for lilyyin: Reading package lists... DoneBuilding dependency tree Reading state information... Doneapache2 is already the n…
在用apt-get安装软件时出现了类似于 install-info: No dir file specified; try –help for more information.dpkg:处理 gettext (–configure)时出错: 子进程 post-installation script 返回了错误号 1 在处理时有错误发生: findutils E: Sub-process /usr/bin/dpkg returned an error code (1) 办法如下: sudo mv…
cd /var/lib/dpkg sudo mv info info.bak #即备份一个info sudo mkdir info #新建一个新的info目录 然后采用以下命令重装那些出错的软件包 sudo apt-get –reinstall install 软件包名 开始我是想在一条命令中同时安装几个软件包,结果还是出现E: Sub-process /usr/bin/dpkg returned an error code (1) .于是把新的info删掉,一个个地来安装,每装好一个软件包,就…