
Linux
salahg
这个作者很懒,什么都没留下…
展开
-
rsync
rsync原创 2010-09-25 16:47:00 · 494 阅读 · 0 评论 -
find xargs
find xargs原创 2010-09-25 16:54:00 · 495 阅读 · 0 评论 -
tcpdump
tcpdump原创 2010-09-27 19:15:00 · 605 阅读 · 0 评论 -
linux下Diff命令使用方法
linux Diff转载 2011-02-11 10:12:00 · 1607 阅读 · 1 评论 -
iconv 的使用方法
iconv原创 2011-02-16 17:43:00 · 888 阅读 · 0 评论 -
Linux Shell 下的输出重定向
Linux Shell 输出重定向原创 2011-02-16 17:06:00 · 552 阅读 · 0 评论 -
Linux 任务控制的几个技巧( &, [ctrl]-z, jobs, fg, bg, kill)
Linux/Unix 区别于微软平台最大的优点就是真正的多用户,多任务。因此在任务管理上也有别具特色的管理思想。我们知道,在 Windows 上面,我们要么让一个程序作为服务在后台一直运行,要么停止这个服务。而不能让程序在前台后台之间切换。而 Linux 提供了 fg 和 bg 命令,让你轻松调度正在运行的任务。假设你发现前台运行的一个程序需要很长的时间,但是需要干其他的事情,你就可以用原创 2011-02-01 22:16:00 · 924 阅读 · 0 评论 -
shell mysql 查询 赋值 统计
#!/bin/bashtotal=0for (( i=0; ido cnt=`/usr/local/mysql/bin/mysql -h127.0.0.1 -uroot -p123456 test -N -e "select count(distinct(uin)) from test$i"` echo $cnt total=`expr $原创 2010-07-26 11:35:00 · 2463 阅读 · 0 评论 -
磁盘I/O性能监控和调优方法&iostat
转自:http://cjjwzs.iteye.com/blog/1044881 磁盘 I/O 性能监控指标和调优方法 http://opkeep.com/system/linux/disk-io.html Linux iostat监测IO状态 http://www.orczhou.com/index.php/2010/03/iostat-detail/ iostat来转载 2012-01-24 14:24:06 · 2912 阅读 · 0 评论