author :headsen chen date : 2019-06-06 10:09:06 root@ubuntu:~# apt-get remove java-1.8.0-openjdk E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. root@ubuntu:~# rm /var/lib/dpkg/lockroot@ubuntu:~# apt-get…
执行sudo apt-get install安装对应的软件出现如下错误 详细错误信息: E: Could not : Resource temporarily unavailable) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it? 错误原因:是因为引用错误的链接导致的. 解决办法(删除这些引用即可): cd /var/lib/dpkg/…
dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem. E: _cache->open() failed, please report. 上网搜索了一下中文网站,里边没有能解决问题的,于是上了ubuntu国外论坛,在里面搜索,终于解决问题了: 代码如下: sudo dpkg --configure -a Enter your password when prompted.…
最近在用create-react-app创建项目,因要配置各种组件,比如babel,antd等, 需要运行npm run eject命令把项目的配置文件暴露出来,但是还是一如既然碰到报错,因为是在本地新创建的文件,没有添加git记录 把这个错误做个笔记,不要老是去查资料 大家可以在根目录下运行命令 create-react-app test cd test git init git add . git commit -m 'Saving before ejecting' npm run ejec…
eclipse中使用maven插件的时候,运行run as maven build的时候报错 -Dmaven.multiModuleProjectDirectory system propery is not set. Check $M2_HOME environment variable and mvn script match. 可以设一个环境变量M2_HOME指向你的maven安装目录 M2_HOME=D:\Program Files\apache-maven-3.3.3 然后在Windo…
原因是缺少CentOS-Base.repo文件,因为我这台机器wget也不能用,所以我是下载到本地sftp上去的,传输的时候一定要在root用户下,否则会无法启动传输 这是报错的完整信息:Loading mirror speeds from cached hostfile There are no enabled repos. Run "yum repolist all" to see the repos you have. To enable Red Hat Subscription…
今天在svn提交的时候它卡顿了一下,我以为已经提交完了,就按了一下,结果就再也恢复不了,也继续不了了... 报错 cleanup failed–previous operation has not finished; run cleanup if it was interrupted 试过执行cleanup,结果也是失败,要更新先要cleanup,但是cleanup的失败信息又叫我cleanup……这是一个死循环! 感觉这是一个设计上的缺陷:使用工作队列来保存数据,后一个操作依赖于前一个操作的结…
今天在ubuntu下安装任何软件都提示以下错误: You might want to run 'apt-get -f install' to correct these:The following packages have unmet dependencies: kate : Depends: kdelibs4c2a (>= 4:3.5.9) but it is not going to be installed Depends: libqt3-mt (>= 3:3.3.8b)…
今天svn提交,出现异常:svn cleanup failed–previous operation has not finished; run cleanup if it was interrupted百度后,大多解决办法:team--> Refresh/Cleanup会出现异常:SVN: org.apache.subversion.javahl.ClientException:Previous operation has not finished=======================…
1. iOS APP Project or Mac APP Project编译错误提示: “The run destination My Mac 64-bit is not valid for Running the scheme '***'. The scheme '***' contains no buildables that can be built for the SDKs supported by the run destination My Mac 64-bit. Make su…
Docker Docker 安装后 报 Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 解决办法 白纸 · 2017年07月20日 · 最后由 rocl 回复于 2017年12月26日 · 9781 次阅读 问题刚在新的Centos上安装Docker-CE,后运行docker run hello-world报错Cannot connect to th…
[转载] http://blog.csdn.net/duanyipeng/article/details/8007684 编译错误"The run destination My Mac 64-bit is not valid for Running the scheme '***',解决办法 标签: schemexcodeiosbuildos 2012-09-22 16:33 8214人阅读 评论(0) 收藏 举报 分类: iOS/iPhone(84) 版权声明:本文为博主原创…
本文地址:http://www.cnblogs.com/jying/p/7764147.html 转载请注明出处. 安装过程其实挺简单,基本上下一步下一步,可以参考我的另一篇mysql安装文章:http://www.cnblogs.com/jying/p/6820472.html 本文重点讲解安装过程中报错 This application requires Visual Studio 2013 Redistributable. Please install the Redistribut…
终端执行: npm run dev 出现: I Your application is running here: http://localhost:8080 但并没有打开浏览器运行项目 解决办法: 找到config/index.js中 autoOpenBrowser: false, 修改为 autoOpenBrowser: true, 如图:…
一个好友的国外VPS由于操作不当,结果装软件的时候总是提示dpkg: warning: files list file for package `*****' missing, assuming package has no files currently installed,导致无法安装任何软件,结果百度+Google了好多教程,最后找到的解决办法如下: #!/bin/bash set -e # Clean out /var/cache/apt/archives apt-get clean #…
前段时间集群出问题,hadoop和hbase启动不了了. 后来hadoop回复了,hbase死活master无法启动.打开日志发现报了以下错误: WARNING! File system needs to be upgraded. You have version null and I want version 7. Run the '${HBASE_HOME}/bin/hbase migrate' script. 于是上网search,网上这位兄弟提供了解决办法: http://www.cnb…
今天打开android studio又碰到一个奇怪的问题:This version of android studio is incompatible with the gradle version used.Try disabling the instant runandroid studio和gradle版本不匹配,我的android studio刚更新完没多久,应该就是gradle的问题.果然在stackoverflow上找到了答案: You can use normal build ru…