Description
Ouroboros is a mythical snake from ancient Egypt. It has its tail in its mouth and continously devours itself.
The Ouroboros numbers are binary numbers of 2^n bits that have the prop...
分类:
其他好文 时间:
2014-08-09 11:40:57
阅读次数:
315
tail -n 行数 -f 文件夹路径以及 名字,用于查看log 后面可以追加 | grep +名字 用于过滤
ps aux|grep 文件 查看执行情况
例如: tail -n 40 -f /export/logs/nerdlogs/new-nerd/nerdserver/main/monitor_
D.log | grep SendThread...
分类:
系统相关 时间:
2014-08-06 14:50:41
阅读次数:
456
在使用linux的过程中多多少少都会涉及到文本的操作,因此掌握一些文本操作的工具命令能大大的提高我们的工作效率。cat命令cat命令的用途是链接文件或标准输入并打樱这个命令常用来显示文件内容,或者将几个文件连接起来显示,或者是从标准输入读取内容并显示,它常与重定向符号..
分类:
系统相关 时间:
2014-08-05 23:05:32
阅读次数:
554
tail-f/var/log/neutron/dhcp-agent.logBydefault,CentOS6.4doesnotsupportnetworknamespaces.Ifonewantstotestthenewvirtualizationplatforms(Docker,OpenStack,&co…)onaCentOSserver,allfeatureswon’tbeavailable.ForOpenStackforexample,Neutronwon’tworkasexpected,..
分类:
Web程序 时间:
2014-08-05 11:35:39
阅读次数:
1996
//使用数组queue[ ]存放结点队列void BFS( ) { head=0; tail=1; queue[head]=首结点的值; while (head<tail) //队列不空 { temp=tail; for (k=head; k<=ta...
分类:
其他好文 时间:
2014-08-03 23:03:16
阅读次数:
250
装完FreeBSD10的安装,安装完退出之后,发现启动项里面只剩下fedora的启动项,我的电脑是Fedora20+FreeBSD双系统,想用GRUB引导修复freeBSD的启动项,网上搜了一堆方法。但是都不可行。
我的FreeBSD是装在gpt5中
修改/ect/grub.d/40-custom
#!/bin/sh
exec tail -n +3 $0
# This file provides...
分类:
其他好文 时间:
2014-08-03 01:47:54
阅读次数:
245
$ adb devices | tail -n +2 | cut -sf 1 | xargs -I X adb -s X install pathto/myapp-release.apk
分类:
移动开发 时间:
2014-08-02 12:30:23
阅读次数:
181
#CentOS监视Tomcat当前命令行输出 tail -f .../apache-tomcat-x.x.x/logs/catalina.out #C3P0在Linux下的主要错误内容 31-Jul-2014 14:14:43.072 INFO [localhost-startStop-1] com.mchange.v2.c3p0.impl.C3P0Imp...
分类:
系统相关 时间:
2014-07-31 17:27:07
阅读次数:
4804
今天收到报警邮件,提示网站502 bad gateway,输入网站url后果然无法打开:登录服务器查看nginx进程正常:查看fastcGI进程已经停止运行了:问题找到后就该查找是什么原因产生的问题,先把fastcGI进程启动后网站能够访问了再细找原因。查看php日志 tail –n 1000 /u...
分类:
Web程序 时间:
2014-07-30 17:12:33
阅读次数:
329
一、文件内容操作(/etc/passwd)1.cat 查看文件内容比较少的2.more 可以分页显示3.less 比more更全面4.head 默认显示文件头10行 -n数字显示头n行5.tail 默认显示文件尾10行 -n数字 显示尾n行 -f 实时查看6.wc 统计7.grep 输出包含指定字符串的行 -i 忽略大小写 -v 取反 ^root ..
分类:
系统相关 时间:
2014-07-30 03:26:53
阅读次数:
671