System Admin
文章平均质量分 77
CPP_CHEN
这个作者很懒,什么都没留下…
展开
-
Regex in VIM
1) The metacharacters 2) The greedy qualifiers 3) The non-greedy qualifiers 4) The ranges [12345], [^"], [a-z], [-0-9], ... 5) The grouping and backreferences 6) The alternatives原创 2013-04-08 22:20:30 · 1367 阅读 · 0 评论 -
top - Linux tools 1 of n
(1) The command line top -hv|-bcHisS -d delay -n limit -u|U user -p pid -w [cols] # dump top to a text file (-b batch mode) top -b -n 1 > top.txt # use command line instead of command name (-原创 2013-06-15 12:59:56 · 954 阅读 · 0 评论 -
/proc/meminfo
How To Analyse Output Of /proc/meminfo | Linux The /proc filesystem is pseudo filesystem. It does not exist on a disk. Instead, the kernel creates it in memory. It is used to provide in转载 2013-06-15 21:32:18 · 1478 阅读 · 0 评论 -
free - Linux tools 2 of n
"free" is used to check the system's memory information. Let's understand its output. sysadmin@ubuntu:~$ free total used free shared buffers原创 2013-06-15 22:08:53 · 636 阅读 · 0 评论 -
Linux commands you should know
(1) 远程关闭一台Windows的机器 net rpc shutdown -I ipAddressOfWindowsPC -U username%password (2) !$是一个特殊的环境变量,它代表了上一个命令的最后一个字符串 (3) sudo !! 以root的身份执行上一条命令 。 (4) "cd –" 回到上一次的目录 (5) ‘ALT+.原创 2013-07-13 11:07:33 · 1027 阅读 · 0 评论 -
Linux I/O Performance Tests using dd
Under Linux, the dd command can be used for simple I/O performance measurements. This article will provide valuable information about which parameters should be used. Contents [hide]转载 2014-04-08 20:01:10 · 1133 阅读 · 0 评论