码迷,mamicode.com
首页 >  
搜索关键字:tail    ( 8573个结果
linux常用命令简单介绍(netstat,awk,top,tail,head,less,more,cat,nl)
1.netstatnetstat -tnl | grep 443 (查看443端口是否被占用)root用户,用netstat -pnl | grep 443 (还可显示出占用本机443端口的进程PID)。-a (all)显示所有选项,默认不显示LISTEN相关-t (tcp)仅显示tcp相关选项-u...
分类:Web程序   时间:2014-09-06 17:24:13    阅读次数:349
CodeForces 91B Queue (线段树单点操作)
Description There are n walruses standing in a queue in an airport. They are numbered starting from the queue's tail: the 1-st walrus stands at the end of the queue and the n-th walrus stands at...
分类:其他好文   时间:2014-09-05 19:56:51    阅读次数:292
QueuePool limit of size 10 overflow 20 reached, connection timed out, timeout 10
当批量删除虚拟机时报错如下1、在计算节点的报错信息如下[root@LX-OS-node12~]#tail-f/var/log/neutron/openvswitch-agent.log2014-09-0219:28:27.25236649TRACEneutron.plugins.openvswitch.agent.ovs_neutron_agentFile"/usr/lib/python2.6/site-packages/neutron/agent/secu..
分类:其他好文   时间:2014-09-03 13:16:17    阅读次数:624
Linux常用指令---tail | head(查看文件)
tail命令从指定点开始将文件写到标准输出.使用tail命令的-f选项可以方便的查阅正在改变的日志文件,tail-ffilename会把filename里最尾部的内容显示在屏幕上,并且不但刷新,使你看到最新的文件内容.1.命令格式;tail[必要参数][选择参数][文件]2.命令功能:用于显示指定文...
分类:系统相关   时间:2014-09-02 00:17:23    阅读次数:192
Cracking the Coding Interview 1-2
#include #include using namespace std;void reverse(char* str) { int length = strlen(str); char* str_head = str; char* str_tail = &str[length-1]; w...
分类:其他好文   时间:2014-08-31 06:03:10    阅读次数:253
JVM原生不支持尾递归优化,但是Scala编译器支持
The?JVM doesn’t support TCO natively, so tail recursive methods will need to rely on the?Scala compiler performing the optimization.----------"Scala in Depth" 3.5.2 Jvm本身是不支持尾递归优化得,...
分类:其他好文   时间:2014-08-29 22:47:58    阅读次数:368
/var/lib/zabbix/percona/scripts/get_mysql_stats_wrapper.sh: line 19: mysql: command not found
[root@test ~]# tail -f /tmp/zabbix_agentd.log/var/lib/zabbix/percona/scripts/get_mysql_stats_wrapper.sh: line 19: mysql: command not foundvi/var/lib/z...
分类:移动开发   时间:2014-08-27 18:32:38    阅读次数:439
linux 杂记
一、设置定时任务 crontab 新增:crontab -e二、日志查看 tail -200f logs/catalina.out三、mysql备份shell #!/bin/bash# Shell script to backup MySql database# Author: Henry h...
分类:系统相关   时间:2014-08-26 11:27:55    阅读次数:292
linux学习日志2
ed编辑edaa.cawelcomtobeijinglearnlinux可以往aa.c里写入内容geditaa.c文本形式打开aa.cnanoaa.clinux自带的一个nano编辑器。cat在字符模式下打印文件的内容到屏幕读文件然后显示到屏幕逐行显示tacaa.c是逆序读取aa.c从尾至头显示文件head显示前十行tail显示文件后十行shift+p..
分类:系统相关   时间:2014-08-26 03:06:25    阅读次数:345
fatal: /etc/postfix/master.cf: line 109: bad transport type: user=vuser
postfix无法启动,查看日志,发现日志提示master.cf文件109行有问题,打开文件一看109行是注释啊,怎么回事?日志如下:tail-f/var/log/maillog Aug1815:56:11localhostpostfix/postfix-script[11639]:startingthePostfixmailsystem Aug1815:56:11localhostpostfix/master[1164..
分类:其他好文   时间:2014-08-26 03:02:16    阅读次数:169
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!