问题 vscode编写C++程序,使用microsoft C++ Unable to open 'cvt.cpp': Unable to read file 'c:\Program Files\Microsoft VS Code\minkernel\crts\ucrt\src\appcrt\convert\cvt.cpp' (Error: Unable to resolve non-existing file 'c:\Program Files\Microsoft VS Code\minkern…
Unable to load R3 module D:\Program Files\Oracle\VirtualBox/VBoxDD.DLL (VBoxDD): GetLastError=1790 (VERR_UNRESOLVED_ERROR). 返回 代码: E_FAIL (0x80004005) 组件: ConsoleWrap 界面: IConsole {872da645-4a9b-1727-bee2-5585105b9eed} 查看日志文件,错误代码: 00:00:00.430041 ma…
Build errors for spider; org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project spider: Compilation failureUnable to locate the Javac Co…
错误提示:Unable to create Debug Bridge: Unable to start adb server: adb server version (32) doesn't match this client (40) 错误原因:有已经运行的adb,端口被占用了. 解决方法:Ctrl + Alt + Del ,三个键子一起按,进入“任务管理器”,找到abd.exe,杀死正在运行的它. 参考: https://stackoverflow.com/questions/4934043…
git提交代码出现错误fatal: Unable to create '项目路径/.git/index.lock': File exists. 具体出错代码如下: 具体原因不详,在stackoverflow上查找了很久,也不清楚原因,但是stackoverflow给出了解决的方法. 解决方法: 在当前项目下打开git bash,运行如下命令: rm -f ./.Git/index.lock 只为成功找方法.大胆的尝试,下一个fun就是你的fun!…
打开Android Studio时报如下错误提示: Unable to create Debug Bridge:Unable to start adb server:error:cannot parse versionstring:kg01 'xxxxxxxxxxxxxxx' failed -- run manually if necessary 这是因为adb.exe使用的5037端口被占用了 解决办法: 根据提示查看adb的端口号5037被谁占用 通过 netstat -aon|findst…
前言   在编译xilinx的uboot的时候出现了一个问题,始终报错:“strip: Unable to recognise the format of the input file `gen_eth_addr'”   1 分析   一般对于编译链接命令出现这样的错误,都是因为目标文件和命令的编译环境不一样导致的,但是我看了一下对于这个目标文件gen_eth_addr,使用的gcc进行编译的啊,为什么strip就不会认识呢? 在第一反应中,gcc/strip都应该是使用的系统安装是/usr/b…
发布一个struts2项目的时候tomcat显示下面这个错误,我的本能感觉就是我的struts.xml或者web.xml写错了,可是我字母找都没发现,于是百度一番,可是我对那些人的回答表示怀疑,感觉应该不行,直到我一直找下去,发现一个不起眼的回答说出了我需要的回答 我回来一看,发现我的错误里的确有这个struts.xml:9:54,于是看一下我的struts.xml,我要哭了 严重: Exception starting filter struts2 Unable to load configu…
如题,linux 安装报错:(initramfs) Unable to find a medium containing a live file system 我是用UItraISO做的启动盘遇到这个问题,换成用deepin的工具做启动盘就好了. 差别是:前者的启动模式是LEGACY模式,后者是UEFI(Unified Extensible Firmware Interface)模式.前者是传统的,后者新一些. 最近忙其他的,突然就发现这么久没有更新博客了.强行更新一波,哈哈.…
前言: 今天按照以往在Docker安装MongoDB的方式安装,但是到最后使用mongo命令执行mongodb命令的时候一直执行不成功,最后还是按照官网的Issues解决了. 创建并运行一个MongoDB容器: docker run -itd --name mongo-test -p 27017:27017 mongo --auth 参数说明: -itd:其中,i是交互式操作,t是一个终端,d指的是在后台运行. --name mongo-test:容器名称 -p 27017:27017 :映射容…