10 2017 档案

m4, autoconf
摘要:http://www.gnu.org/software/m4/m4.html GNU M4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 compatible although it h 阅读全文

posted @ 2017-10-30 13:53 Milton 阅读(541) 评论(0) 推荐(0) 编辑

Makefile 和 CMakeLists.txt
摘要:Makefile Makefile 的格式 target: prerequisites [tab]command 例子 #Makefile all:chap1 chap2 chap1: 1-1 1-2 1-1 : 1_1.c gcc -o o_1_1 1_1.c -lc 1-2 : 1_2.c gc 阅读全文

posted @ 2017-10-28 16:48 Milton 阅读(1199) 评论(0) 推荐(0) 编辑

Java中的String pool
摘要:public String intern()返回字符串对象的规范化表示形式。一个初始时为空的字符串池,它由类 String 私有地维护。当调用 intern 方法时,如果池已经包含一个等于此 String 对象的字符串(该对象由 equals(Object) 方法确定),则返回池中的字符串。否则,将 阅读全文

posted @ 2017-10-19 20:35 Milton 阅读(311) 评论(0) 推荐(0) 编辑

小米路由Mini刷Breed, 潘多拉和LEDE
摘要:1. 下载breed,地址 http://breed.hackpascal.net/ 2. 下载小米Mini的开发板rom, 地址 http://www1.miwifi.com/miwifi_download.html 3. 通过web登录小米Mini的后台, 路由器设置->升级检测->手动升级, 阅读全文

posted @ 2017-10-13 23:40 Milton 阅读(16960) 评论(0) 推荐(0) 编辑

Centos 编译LEDE/OpenWrt
摘要:准备工作 在OpenWrt 18.06.0之后, 需要使用Centos7编译. 1. 安装依赖软件 这是官方文档提供的依赖列表 yum install subversion binutils bzip2 gcc gcc-c++ gawk gettext flex ncurses-devel zlib 阅读全文

posted @ 2017-10-12 12:26 Milton 阅读(2412) 评论(0) 推荐(0) 编辑

Centos6下编译安装gcc6.4.0
摘要:Centos6自带的gcc4.4.7不支持c++11, 于是编译安装最新版的gcc Update 2017-10-12: 在将 /usr/bin/gcc 更名后, link到这个文件的 /usr/bin/cc 就失效了, 需要删除, 并在 /usr/local/bin/ 下新建一个到gcc的cc软链 阅读全文

posted @ 2017-10-12 02:05 Milton 阅读(8193) 评论(0) 推荐(1) 编辑

IntelliJ IDEA遇到Unable to parse template “Class”错误
摘要:在新安装的Ubuntu16下运行IntelliJ IDEA时, 遇到一个错误,在新建class的时候,提示Unable to parse template “Class” 通过查看 Settings -> Editor -> File and Code Templates 可以看到,所有的模板都是空 阅读全文

posted @ 2017-10-10 23:32 Milton 阅读(3935) 评论(0) 推荐(1) 编辑

Redis常用命令
摘要:Commands 系统命令 连接 $ redis-cli -a foobared -p 6179 127.0.0.1:6179> dbsize (integer) 0 检查空间占用 看summary部分的统计 /redis-cli --bigkeys -a [passcode] 监控正在执行的命令 阅读全文

posted @ 2017-10-09 12:51 Milton 阅读(167) 评论(0) 推荐(0) 编辑

导航