
报错
九条院
无简介
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
error: the HTTP rewrite module requires the PCRE library
ubuntu下安装nginx错误 error: the HTTP rewrite module requires the PCRE library 解决方法: 安装pcre包。 sudo apt-get update sudo apt-get install libpcre3 libpcre3-dev 可能还需要安装 sudo apt-get install openssl libssl-dev ...原创 2019-05-20 10:11:06 · 235 阅读 · 0 评论 -
error: 'NULL' was not declared in this scope
转自:https://blog.youkuaiyun.com/libing_zeng/article/details/55668666 编译时出现这个错误: error: ‘NULL’ was not declared in this scope 解决方式: 在文件开头添加如下代码: #include <stddef.h> 或者 #include <stdlib.h> 或者 #incl...转载 2019-05-15 12:11:40 · 9068 阅读 · 0 评论 -
pure virtual method called terminate called without an active exception
今天遇到了这个 pure virtual method called terminate called without an active exception 目前找原因中。原创 2019-05-16 21:01:36 · 1572 阅读 · 2 评论 -
Password: su: Authentication failure
原创 2019-07-02 08:55:32 · 2716 阅读 · 0 评论 -
git commit 编辑器问题
之前用惯了vim,今天新装了一个 ubuntu ,当我敲完 git commit 后,编辑完发现退不出去了,卡了半天结果发现用的根本不是 vim ,而是 nano 。 为了防止使用 nano ,需要修改一下文件。编辑.git/config文件。在core中添加editor = vim。如此以后在使用git的时候就自动使用vim作为编辑器; ...原创 2019-07-08 09:30:40 · 511 阅读 · 0 评论 -
syntax error unexpected end of file expecting then
问题: 在 windows 中用 Notepad++ 写了一个脚本,传到开发板中执行,出现下面错误提示。 : not foundine 1: ./get.sh: line 8: syntax error: unexpected end of file (expecting “then”) 然后直接在 Notepad++ 中将文件转成UTF-8 。执行后还是不行。 解决方法: 在 linux 中使用...原创 2019-07-15 11:18:20 · 2958 阅读 · 0 评论