-
tcpping and Tcptraceroute’s use
Jul262008tcpping使用TCP协议来检测网络状况,与平时使用的ping有所不同,ping使用的是ICMP协议。 tcpping是一个shell脚本,运行需要 tcptraceroute 的支持,所以真正起作用的是tcptraceroute 整体安装比较简单,具体顺序是先安装tcptraceroute,然后创建tcpping脚本。注意: Tcptraceroute需要libcap和libnet的支持,这里暂不介 ...
阅读全文1条评论
-
linux 下su 和su – 并不一样
Jul162008习惯总是使用su来切换用户,但是今天在修改了新用户的环境变量后发现su 和su – 还存在些许区别。
su newuser保留原来用户(olduser)的环境变量,新用户下的环境bash设置无效。
而 su – newuser 则使用newuser的环境变量,新用户的~/.bash_profile生效。
作者:u2 | 分类:OpenSource | 标签:sulinux 下su 和su – 并不一样已关闭评论
-
use Volano对jvm的性能进行测试
Jul132008
-
用siege做http的压力测试
Jul112008siege是一个开源的压力测试用具,有点类似apache的ab http://www.joedog.org/Siege/Manualdownload from ftp://ftp.joedog.org/pub/siege ./configure –prefix=/home/siege && make && make install [root@ bin]# ./siegeSIEGE 2.67Usage: siege [options] &n ...
阅读全文用siege做http的压力测试已关闭评论
-
使用Jconsole对java的内存使用情况(JVM)进行监控
Jul102008
-
shell 的变量作用域
Jul082008shell变量的作用域while read line do str[$i]=$line1 echo $i echo ${str[i]} let i=i+1 done < data len=${#str[@]} echo $len $len长度为实际data文件的行数 str[]变量的作用 ...
阅读全文shell 的变量作用域已关闭评论
-
kernel panic – not syncing: 的思考
Jul052008kernel panic 出错会在屏幕上显示,看了下message文件、并没有相关记录。 kernel panic 主要有以下几个出错提示: kernel panic – not syncing: Attempted to kill the idle task!kernel panic – not syncing: killing interrupt handler!Kernel Panic – not syncing:Attempted to kill init ! 查 ...
阅读全文