大连Linux/Unix高端就业、认证培训的领导者。
发布时间:2013-04-16 08:09:44
EX436第四章:RAID阵列4.00 本章概述: -了解RedHat Linux下各种类型的RAID阵列; -学习如何管理高级的软RAID; -学习如何优化软RAID阵列; -规划和实现存储阵列的增长;4.01 独立的磁盘冗余阵列(RAID).........【阅读全文】
发布时间:2013-04-15 15:58:08
本章内容简介: ·理解Linux中的Udev是如何管理硬件设备; ·学习如何为自定义设备名编写udev规则;2.01 Udev的功能: 在Linux系统中,内核的主要功能可以分为5大部分:文件系统、内存调度、进程调度、协议管.........【阅读全文】
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