大连Linux/Unix高端就业、认证培训的领导者。
发布时间:2013-04-15 15:58:08
本章内容简介: ·理解Linux中的Udev是如何管理硬件设备; ·学习如何为自定义设备名编写udev规则;2.01 Udev的功能: 在Linux系统中,内核的主要功能可以分为5大部分:文件系统、内存调度、进程调度、协议管.........【阅读全文】
发布时间:2013-04-15 14:23:55
举例说明:watch -n 2(秒) -d top -b -n -p PID例如监控mysql进程的资源咱用情况:watch -n 2 -d top -b -n -p 11709输出结果如下:Every 2.0s: top -b -n 1 -p 11709  .........【阅读全文】
w6308661392013-03-26 17:04
gltnsrice:尹伊明:
a:
[root@localhost ~]# w | sed 's/\([....]\{4,\}\) .*/\1/'
[root@localhost ~]# w | cut -d' ' -f1 | sed 's/\(.....*\)/\1/g'
[root@localhost ~]# who | sed 's/\([^ ]\{4,\}\) .*/\1/'
[root@localhost ~]# who | grep '^[^ ]\{4,\}'
b:
[root@localhost home]# cat passwd | cut -d: -f3 | grep '[0-9]\{3,\}'
[root@localhost home]# cat passwd | cut -d: -f1,3 | grep '[0-9]\{3,\}'
d:
[root@localhost home]# ls -l | sed 's/ */*/g' | cut -d* -f9,5 | sort -n
gltnsrice2013-03-16 12:07
尹伊明:
a:
[root@localhost ~]# w | sed 's/\([....]\{4,\}\) .*/\1/'
[root@localhost ~]# w | cut -d' ' -f1 | sed 's/\(.....*\)/\1/g'
[root@localhost ~]# who | sed 's/\([^ ]\{4,\}\) .*/\1/'
[root@localhost ~]# who | grep '^[^ ]\{4,\}'
b:
[root@localhost home]# cat passwd | cut -d: -f3 | grep '[0-9]\{3,\}'
[root@localhost home]# cat passwd | cut -d: -f1,3 | grep '[0-9]\{3,\}'
d:
[root@localhost home]# ls -l | sed 's/ */*/g' | cut -d* -f9,5 | sort -n