- 博客(22)
- 收藏
- 关注
转载 bash programming start
http://www.ibm.com/developerworks/cn/linux/shell/bash/bash-2/
2012-12-02 16:30:50
440
转载 JVM max thread number
http://gflei.iteye.com/blog/709355http://blog.sina.com.cn/s/blog_6145ed81010144rf.html
2012-12-02 16:30:15
660
转载 Linux programming and system knowledge
http://meizhini.iteye.com/blog/187310 linux inetd start uphttp://www.enderunix.org/docs/eng/daemon.php unix daemon server programminghttp://fedora.linuxsir.org/main/node/91?q=node/9
2012-12-02 16:29:35
575
转载 Apache server type standalone and inetd
http://www.yayu.org/look.php?id=167
2012-12-02 16:18:42
489
转载 Apache and Tomcat
http://www.ibm.com/developerworks/cn/opensource/os-lo-apache-tomcat/
2012-12-02 16:10:48
378
转载 RDP related
http://technet.microsoft.com/en-us/library/ee890957(WS.10).aspxhttp://lifehacker.com/5080121/five-best-remote-desktop-toolshttp://www.ip-tcp.com/?p=734http://msdn.microsoft.com/e
2012-12-02 15:55:39
353
转载 bash shell shortcut
http://linuxtoy.org/archives/bash-shortcuts.htmlhttp://www.dbanotes.net/techmemo/shell_shortcut.html
2012-12-02 15:53:37
457
转载 android proguard
http://developer.android.com/guide/developing/tools/proguard.html proguard
2012-12-02 15:50:29
342
转载 windows programming and I/O model
http://ycwangshuai2008.blog.163.com/blog/static/5066933120108182453397/ unicode...http://www.cnblogs.com/NeuqUstcIim/archive/2008/08/17/1269889.html IOCPhttp://hi.baidu.com/ortega/ite
2012-12-02 15:49:53
559
转载 Linux memory analysis
http://ixdba.blog.51cto.com/2895551/715742 analysis toolhttp://liulinxia02.blog.163.com/blog/static/2686877201121523051554/ memory analysishttp://linux.cn/article-211-1.html memory anal
2012-12-02 15:45:56
608
转载 音视频编码
http://blog.youkuaiyun.com/ajaxhe/article/details/6699703 aac http://www.cnblogs.com/myitm/archive/2011/07/25/2116582.html audio basichttp://blog.youkuaiyun.com/whybiang/article/details/6632564 pc
2012-12-02 15:24:57
555
转载 android audio latency
http://code.google.com/p/android/issues/detail?id=3434server capture a/v and send to client, client decode the a/v realtime
2012-12-02 15:16:29
686
转载 Android 360°平滑游戏摇杆(触屏方向导航)
ZZ http://blog.youkuaiyun.com/xiaominghimi/article/details/6423983
2012-12-02 15:14:34
1010
转载 linux下删除海量文件
Background:ADF-RR ST/PT 中生成很多log文件/var/spool/mqueue下海量文件,几百万rm * -f肯定不行list | xargs rm -f按说行,网上大家都说行,但是此命令执行一会就自动退出了,而且ls | wc -l发现啥都没删掉想了想用sed先ls > list 生成list文件写了个脚本
2012-09-24 22:18:41
490
转载 关于Linux下总文件数与单个目录下子目录数/文件数限制问题
Background: ADF-Provisioning ST/PT 中service 和 content 过多,而每个service和content都会生成一个相应的子目录。一、文件数限制: 系统所能生成的总的文件数受系统所剩节点数限制,执行tune2fs -l /dev/sda1(目录所在的分区) |grep inodes 可以查看剩余节点数在一台ext
2012-09-24 22:16:09
2008
转载 Linux nohup详解
使用nohup让程序永远后台运行Unix/Linux下一般比如想让某个程序在后台运行,很多都是使用 & 在程序结尾来让程序自动运行。比如我们要运行mysql在后台:/usr/local/mysql/bin/mysqld_safe --user=mysql &但是加入我们很多程序并不象mysqld一样做成守护进程,可能我们的程序只是普通程序而已,一般这种程序使用 &
2012-09-24 22:13:29
987
转载 Linux ulimit解决最大打开文件数限制
Background: ADF-FR /RR ST/PT 系统参数调整。limit: 显示(或设置)用户可以使用的资源的限制(limit), 这限制分为软限制(当前限制)和硬限制(上限), 其中硬限制是软限制的上限值, 应用程序在运行过程中使用的系统资源不超过相应的软限制, 任何的超越都导致进程的终止. 1. 各参数含义usage: ulimit [-SHacdflmn
2012-09-24 22:12:24
4060
转载 Apache Web Server性能测试中大量TIME_WAIT解决方法 及 Linux sysctl.conf 优化解决方案
Background: ADF-FR / RR ST/PT 测试时调整的参数。今天早上一上班,有同事就反映公司好几个网站都打不开,登陆数据库服务器(windows),发现很卡,于是重启了下服务器,进入系统后,没过一会问题依旧,查看了下系统进程,发现mysql占用率达到99%,可以肯定的是mysql连接出现问题:netstat -an192.168.1
2012-09-24 22:09:01
3209
原创 Valgrind检测Apache web server内存泄漏
Valgrind能做什么? •内存使用检测,包括: –内存泄漏 –非法内存访问 –未初始化变量使用 –重复释放内存 •多线程竞争 –检测死锁 -检测竞争Valgrind还能做什么? •性能分析 –Cachegrind+ cg_annotate
2012-09-24 21:47:45
1303
转载 Linux流量监控工具 - iftop
Background: Zabbix 中检测网络流量的命令。在类Unix系统中可以使用top查看系统资源、进程、内存占用等信息。查看网络状态可以使用netstat、nmap等工具。若要查看实时的网络流量,监控TCP/IP连接等,则可以使用iftop。一、iftop是什么?iftop是类似于top的实时流量监控工具。官方网站:http://www.ex-par
2012-09-24 21:40:27
495
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人