1.查看文件是dos格式还是unix格式: vi filename :set ff? 2.如果是dos格式,则将文件转换为unix格式 :ser ff=unix:wq 3.转换完成后,就可以重新运行了 ...
分类:
编程语言 时间:
2020-06-08 23:27:20
阅读次数:
76
1、基本操作 1.1 cd (change directory) 格式:cd <路径> 功能:cd指令后面跟一个路径,有于切换到当前用户所在的路径,其中路径可以是绝对路径,也可以是相对路径。 使用示例: cd /system/bin 表示切换到/system/bin路径下 cd logs 表示切换到 ...
分类:
系统相关 时间:
2020-06-08 23:21:53
阅读次数:
89
初始化错误,原因项目只会编译java文件,编译后只有class文件xml等其他resource文件不会存在编译后的包里 解决方法:在项目或者模块的maven配置文件pom.xml中配置 <build> <resources> <resource> <directory>src/main/resour ...
分类:
编程语言 时间:
2020-06-08 11:06:06
阅读次数:
85
1、初始化数据库的时候报错 error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory 是因为libstdc++.so.5没有装yum ...
分类:
数据库 时间:
2020-06-08 00:19:25
阅读次数:
134
Windows 程序原理 一,CPU的保护模式和windows操作系统 windows 是多任务实现 虚拟内存和 各个进程的地址空间安排:2G系统空间,2G用户空间,2G用户空间是各个进程私有的,很少被其他应用打断,保证系统稳定 内核模式和用户模式:虽然用户模式下是独立4G空间,但是内核模式的系统和 ...
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
尝试用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 ...