iostat命令
摘要:http://www.orczhou.com/index.php/2010/03/iostat-detail/ Linux系统出现了性能问题,一般我们可以通过top、iostat、free、vmstat等命令来查看初步定位问题。其中iostat可以给我们提供丰富的IO状态数据。 1. 基本使用 $iostat -d -k 1 10 参数 -d 表示,显示设备(磁盘)使用状态;-k某些使用blo...
阅读全文
Urlencode and Urldecode 命令行
摘要:由于经常使用,简单记录之 $ alias urlencode='python -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1])"' $ urlencode 'q werty=/;'q+werty%3D%2F%3B alias urldecode='python -c "import sys, urllib as u...
阅读全文
Hadoop生态系统
摘要:现在hadoop周边发展的外围系统越来越多,都搞不清了. http://www.neevtech.com/blog/2013/03/18/hadoop-ecosystem-at-a-glance/ http://www.csdn.net/article/2013-03-11/2814446-Hadoop_ecosystem_infographic
阅读全文
GDB 反向调试(Reverse Debugging)
摘要:这个挺有意思 http://blog.csdn.net/CherylNatsu/article/details/6436570 使用调试器时最常用的功能就是step, next, continue,这几个调试命令都是“往下执行”的, 但是很多时候会有这种需求:你在调试的过程中多跳过了几步而错过中间过程,这时候不得不重头调试一遍,非常麻烦。而GDB从7.0版本开始支持反向调试功能,也就是允许你倒...
阅读全文