我正在尝试像这样安装php curl:
sudo apt-get update
sudo apt-get install php5-curl
但我一直收到错误。
阅读包列表...完成构建依赖关系树
阅读状态信息......完成php5-curl已经是最新版本了。 0 升级,0新安装,0删除,3未升级。 2没有 完全安装或删除。此操作后,0 B额外 将使用磁盘空间。你想继续吗? [是/否] Y设置 runit(2.1.2-3ubuntu1)... start:无法连接到Upstart:失败 连接到socket / com / ubuntu / upstart:连接被拒绝dpkg: 错误处理包runit( - configure):安装了子进程 安装后脚本返回错误退出状态1 dpkg:依赖项 问题阻止配置git-daemon-run:git-daemon-run 取决于runit;但是:尚未配置包运行。dpkg:错误处理包git-daemon-run( - configure): 依赖问题 - 保持未配置没有编写apport报告 因为错误消息表明它的后续错误 以前的失败。 处理时遇到错误:
runit git-daemon-run E:子进程/ usr / bin / dpkg返回错误 代码(1)
当我尝试sudo dpkg --configure -a
时,我得到了:
dpkg:依赖性问题会阻止git-daemon-run的配置: git-daemon-run取决于runit;但是:包runit不是 已配置。
dpkg:错误处理包git-daemon-run( - configure): 依赖性问题 - 遇到未配置的错误 处理时:git-daemon-run
当我尝试sudo apt-get install --reinstall runit
时,我得到了:
阅读包列表...完成构建依赖关系树读取 状态信息...完成0升级,0新安装,1 重新安装,0表示删除,8表示未升级。 2未完全安装或 除去。执行此操作后,将增加0 B的额外磁盘空间 用过的。 E:内部错误,没有runit的文件名:amd64
当我尝试sudo apt-get install runit
时,我得到了:
阅读包列表...完成构建依赖关系树读取 状态信息...完成runit已经是最新版本。 0 升级,0新安装,0删除,8未升级。 2没有 完全安装或删除。此操作后,0 B额外 将使用磁盘空间。你想继续吗? [是/否] Y设置 runit(2.1.2-3ubuntu1)... start:作业已在运行:runsvdir dpkg:错误处理包runit( - configure):subprocess 安装后的安装后脚本返回错误退出状态1 dpkg: 依赖性问题会阻止git-daemon-run的配置: git-daemon-run取决于runit;但是:包runit不是 已配置。
dpkg:错误处理包git-daemon-run( - configure): 依赖问题 - 保持未配置没有编写apport报告 因为错误消息表明它的后续错误 以前的失败。 处理时遇到错误:runit git-daemon-run E: 子进程/ usr / bin / dpkg返回错误代码(1)
当我尝试sudo apt-get install --reinstall git-daemon-run
时,我得到了:
阅读包列表...完成构建依赖关系树读取 状态信息...完成0升级,0新安装,1 重新安装,0表示删除,8表示未升级。 2未完全安装或 除去。执行此操作后,将增加0 B的额外磁盘空间 用过的。 E:内部错误,没有git-daemon-run的文件名:amd64
我该如何解决这个问题?
系统规格:
答案 0 :(得分:0)
检查来自https://askubuntu.com/questions/631615/problems-with-git-all-and-15-04
的解决方案您需要强行删除(function(){
"use strict";
angular
.module('app')
.directive('myExample', myExample);
myExample.$inject = ['$location', '$log']
function myExample($location, $log) {
var directive = {
restrict: 'A',
templateUrl: 'app/feature/example.directive.html',
controller: ExampleController,
controllerAs: 'vm'
};
return directive;
}
function ExampleController() {
var vm = this;
vm.path = $location.path();
$log.info(vm.path());
}
})();
。运行runit
应该有效。您可能需要使用sudo dpkg -r runit
选项之一。