Scala 是什么?

2017-03-27

Scala 是一门多范式(multi-paradigm)的编程语言,设计初衷是要集成面向对象编程和函数式编程的各种特性。  阅读全文...

oracle启动em企业管理器

2017-03-14

Starting Oracle Enterprise Manager 11g Database Control  阅读全文...

linux测速软件

2017-03-14

安装linux服务器后,有时候需要检查带宽情况。  阅读全文...

bind9编译安装

2017-02-15

bind9.11升级。  阅读全文...

mysql最大连接数

2017-02-04

查询max_connections的值。  阅读全文...

centos7官方启动脚本

2016-12-15

centos 7.3需要用systemctl 命令启动nginx.service  阅读全文...

shell计算距离生日的天数

2016-11-16

利用时间戳计算秒差,除以天的秒数86400.  阅读全文...

有多少种方式可以在vim 中插入行号

2016-11-15

添加行号对Vim来讲是小菜一碟  阅读全文...

shell获取随机字符串

2016-11-13

0、tr -dc a-z < /dev/urandom | head -c4  阅读全文...

kernel nf_conntrack: table full, dropping packet

2016-10-31

“连接跟踪表已满,开始丢包”!  阅读全文...

grep [:digit:]实例

2016-10-24

Finally,  certain  named  classes  of  characters are predefined within bracket expressions, as follows.  Their
names are self explanatory, and they are [:alnum:],  [:alpha:],  [:cntrl:],  [:digit:],  [:graph:],  [:lower:],
[:print:], [:punct:], [:space:], [:upper:], and [:xdigit:].  For example, [[:alnum:]] means [0-9A-Za-z],  阅读全文...

php编译安装configure参数说明

2016-10-18

configure时参数很多,选自己需要的。  阅读全文...

linux kworker

2016-10-09

What is kworker? kworker means a Linux kernel process doing "work" (processing system calls).  阅读全文...

sendip

2016-09-30

SENDIP 是一个Linux 下的命令行工具,可以通过命令行参数的方式发送各种格式的IP 包,它有大量的命令行参数来规定各种协议的头格式,目前可支持NTP, BGP, RIP, RIPng,TCP, UDP, ICMP 或raw IPv4 和IPv6 包格式,并且可以随意在包中添加数据。  阅读全文...

查询连续100个字符的文件

2016-09-28

find /abc -name "*.php"|xargs grep '[[:graph:]]\{100,\}'  阅读全文...