error and solve

Error:

E: 无法获得锁 /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)
E: 无法锁定管理目录(/var/lib/dpkg/),是否有其他进程正占用它?

解 决方法一:
#:ps -aux (列出进程,形式如)
root 5765 0.0 1.0 18204 15504 ? SN 04:02 0:00 apt-get -qq -d
找到最后一列以apt-get 开头的进程
#:sudo kill -9 该进程的PID

解决方法二:
#:sudo rm /var/cache/apt/archives/lock
#:sudo rm /var/lib/dpkg/lock

启动openstack服务

screen -c stack-screenrc

stack-screenrc 在devstack下面

时间: 2024-11-06 11:40:03

error and solve的相关文章

An unexpected exception occurred while creating a change object. see the error log for more details

今天再给Android项目工程中的包重命名时出现了这个错误(之前重命名的时候就没有出现,郁闷): 效果如下图所示: 之后google百度各种找,最后在stackoverflow上找到以一个帖子: http://stackoverflow.com/questions/6465127/rename-android-package-name-fails/15771033#15771033     (注意:这个解决办法不是该贴的被采纳的答案) 解决办法   : You can not belive th

Trial and Error

Trial and Error 可以被翻译为试错,更白话一些就是不断尝试,不断犯错,继续尝试,继续犯错,一直进行下去,直到作对了. 有一篇英文文章讲解的不错,特在此分享,原文链接: http://www.exforsys.com/career-center/problem-solving/the-use-of-trial-and-error-to-solve-problems.html The Use of Trial and Error To Solve Problems Some compl

JAVA语言程序设计基础课后习题第五章

//exercise 5.1 package fivechapterexercise1; public class first { public static void main(String[] args) { // TODO Auto-generated method stub final int NUMBER_OF_PENTAGONAL_PER_LINE=10; for(int i=1;i<=100;i++){ System.out.print(getpentagonalnumber(i)

R矩阵运算学习

1 矩阵基本操作 1.1创建向量 R里面有多种方法来创建向量(Vector),最简单的是用函数c().例如: >X=c(1,2,3,4) >X [1] 1 2 3 4 当然,还有别的方法.例如: >X=1:4 >X [1] 1 2 3 4 还有seq()函数.例如: > X=seq(1,4,length=4) > X [1] 1 2 3 4 注意一点,R中的向量默认为列向量,如果要得到行向量需要对其进行转置. 1.2创建矩阵 R中创建矩阵的方法也有很多.大致分为直接创建

Ubuntu14.04 64Bit 中从源码编译安装Gtk-3.16.3

(一)从源码编译安装GTK开发环境 为了便于获取源码,截止2015-05-26的gtk相关源码的存放于网盘中: 1. 相关网址 1)GTK+ Website 2)Compiling the GTK+ libraries  Overview of GTK+ and its Libraries 2.下载和编译源码包 1)下载源码:  (版本:gtk+-3.16.3.tar.xz) 2)解压配置gtk源码 $ tar xvfJ gtk+-3.16.3.tar.xz $ cd gtk+-3.16.3/

矩阵的基本运算,相乘,逆,转置,伴随

1 矩阵基本操作 1.1创建向量 R里面有多种方法来创建向量(Vector),最简单的是用函数c().例如: >X=c(1,2,3,4) >X [1] 1 2 3 4 当然,还有别的方法.例如: >X=1:4 >X [1] 1 2 3 4 还有seq()函数.例如: > X=seq(1,4,length=4) > X [1] 1 2 3 4 注意一点,R中的向量默认为列向量,如果要得到行向量需要对其进行转置. 1.2创建矩阵 R中创建矩阵的方法也有很多.大致分为直接创建

最大似然估计实例 | Fitting a Model by Maximum Likelihood (MLE)

参考:Fitting a Model by Maximum Likelihood 最大似然估计是用于估计模型参数的,首先我们必须选定一个模型,然后比对有给定的数据集,然后构建一个联合概率函数,因为给定了数据集,所以该函数就是以模型参数为自变量的函数,通过求导我们就能得到使得该函数值(似然值)最大的模型参数了. Maximum-Likelihood Estimation (MLE) is a statistical technique for estimating model parameters

Solve error: &#39;class vtkImageActor&#39; has no member named &#39;SetInput&#39;

Replacement of SetInput() with SetInputData() and SetInputConnection() someFilter->SetInput(someReader->GetOutput()); // Outdated // Replace to the following: someFilter->SetInputConnection(someReader->GetOutputPort()); someFilter->SetInput

Solve error LNK2038: mismatch detected for &#39;_ITERATOR_DEBUG_LEVEL&#39;: value &#39;0&#39; doesn&#39;t match value &#39;2&#39;

This error happens in Release mode of VS2010, solve this problem by do following: . Go to Project Pages / Configuration Properties / C,C++ / Preprocessor / Preprocessor Definitions. Add '_ALLOW_ITERATOR_DEBUG_LEVEL_MISMATCH' Solve error LNK2038: mism