[root@localhost ~]# cd msmtp-1.4.20[root@localhost msmtp-1.4.20]# ./configurechecking build system type... i686-pc-linux-gnuchecking host system type. ...
分类:
其他好文 时间:
2020-06-07 14:37:42
阅读次数:
74
vue-canvas-effect canvas动画合集Vue组件 <p align="center"> [? online demo](https://chenxuan0000.github.io/vue-canvas-effect/index.html) </p> 内容 浏览器兼容 安装 使用 ...
分类:
其他好文 时间:
2020-06-07 13:10:30
阅读次数:
129
fatal: No url found for submodule path 'design' in .gitmodules 如图,.gitmodules中已经没有design的路径了 原因可能是本地存在缓存,清理一下缓存就好了 git rm --cached [路径名] 比如此处我是:git rm ...
分类:
其他好文 时间:
2020-06-07 12:47:30
阅读次数:
111
用Windows上写了一个脚本,结果放到虚拟机上运行的时候出现了一个错误:** $'\r': command not found **。 错误的原因是linux系统的换行符是\n,而Windows里的换行符是\r\n。 解决方法: 安装一个命令:dos2unix yum install dos2un ...
分类:
系统相关 时间:
2020-06-07 11:11:02
阅读次数:
73
1.生产环境出现以下报错 该错误发生在update操作中,该表并未建立索引,也就是只有InnoDB默认的主键索引,发生错误的程序是for循环中update。 什么情况下会出现Deadlock found when trying to get lock? https://dev.mysql.com/d ...
分类:
数据库 时间:
2020-06-06 18:54:39
阅读次数:
81
这里要提到一个网站https://pkgs.org/,他是linux系统的一个相关网站,里面都是相关内容 Warning: RPMDB altered outside of yum. ** Found 3 pre-existing rpmdb problem(s), 'yum check' outp ...
分类:
系统相关 时间:
2020-06-06 09:24:28
阅读次数:
244
尝试用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 ...