尝试用Qt5编译Qt4的工程,会遇到下面的问题: 错误: error: C1083: 无法打开包括文件: “QApplication”: No such file or directory 出现原因: Qt5里不再用QtGui模块,而是使用QtWidgets模块。 解决方法: 在.pro里加上QT ...
分类:
移动开发 时间:
2020-06-05 15:26:17
阅读次数:
56
error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory 可能你的/usr/lib目录下没有libssl.so.1.0.0这个库,或 ...
分类:
其他好文 时间:
2020-06-05 15:20:36
阅读次数:
275
错误提示: warning: LF will be replaced by CRLF in xxx The file will have its original line endings in your working directory 注解: ? LF:Line Feed 换行 ? CRLF: ...
分类:
其他好文 时间:
2020-06-05 14:44:47
阅读次数:
82
1. 今天在windows上写了一个脚本,拷贝到linux执行报错 :-bash: xxx: /bin/bash^M: bad interpreter: No such file or directory 主要原因是脚本是我在windows下编辑然后上传到linux系统里执行的。.sh文件的格式为d ...
本篇文章,从克隆源码开始到调试整个过程,分阶段来进行详细讲解`SkyWalking`编译环境的搭建。 ...
分类:
其他好文 时间:
2020-06-04 21:52:52
阅读次数:
198
原文链接 一、检查 SSH key 是否存在 在终端输入如下代码: ls -al ~/.ssh 如果没有,终端显示如下: No such file or directory 如果有,终端显示如下: ? ~ ls -al ~/.ssh total 24 drwx 5 ant staff 160 1 1 ...
分类:
系统相关 时间:
2020-06-04 19:45:19
阅读次数:
90
一、SSHLibrary robotframework做自动化测试,在流程中可能需要远程连接机器做一些简单操作,比如连接linux服务器,平时测试的时候使用客户端工具去连接就是远程连接。远程连接有两种:一种是用户名密码登录连接;一种是通过密钥连接:比如工具输入用户名、密码去连接服务器,再比如连接gi ...
分类:
其他好文 时间:
2020-06-04 14:03:58
阅读次数:
168
一、 rsync 远程同步工具rsync主要用于备份和镜像。具有速度快、避免复制相同内容和支持符号链接的优点。rsync和scp区别:用rsync做文件的复制要比scp的速度快,rsync只对差异文件做更新。scp是把所有文件都复制过去。(1)基本语法 rsync -rvl $pdir/$fname ...
分类:
其他好文 时间:
2020-06-03 15:20:11
阅读次数:
72
使用NewtonsoftJson 安装 Microsoft.AspNetCore.Mvc.NewtonsoftJson Startup.ConfigureServices配置 //配置Mvc + json 序列化 services.AddMvc(options => { options.Enable ...
分类:
Web程序 时间:
2020-06-03 13:46:27
阅读次数:
205
问题: startup.bat可以正常启动,http://localhost:8080/ 可以正常访问。但是Tomcat9w.exe无法启动为started,一直为Stopped。 解决方案: 如下图所示,把Java Virtual Machine改为 本机JDK安装目录下的jvm.dll(应该在b ...
分类:
其他好文 时间:
2020-06-03 13:36:46
阅读次数:
215