時(shí)間:2015-06-28 00:00:00 來(lái)源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評(píng)論(0)
在linux中存在兩個(gè)time,一個(gè)是bash的命令,另外一個(gè)是程序/usr/bin/time,bash的time命令只能很簡(jiǎn)單的顯示程序執(zhí)行的時(shí)間,而/usr/bin/time程序可以顯示很詳細(xì)的與IO相關(guān)的數(shù)據(jù),比如從內(nèi)存中讀取了多少數(shù)據(jù),從磁盤(pán)中讀取了多少數(shù)據(jù)之類(lèi)的,以及文件系統(tǒng)的頁(yè)大小。
通過(guò)type命令我們可以看到Linux中的兩個(gè)time
linux">oracle@linux[]:~
$type -a time
time is a shell keyword
time is /usr/bin/time
bash中的time示例
oracle@linux[]:~
$time echo test
test
real??? 0m0.000s
user??? 0m0.000s
sys???? 0m0.000s
bash中的time命令只能顯示你程序的執(zhí)行時(shí)間,包括實(shí)際執(zhí)行時(shí)間,用戶時(shí)間和系統(tǒng)時(shí)間,除此之外沒(méi)有其他的信息。
而time程序就不一樣了,它可以提供很詳盡的信息,而且還能夠定制time程序的輸出結(jié)果,具體的可以通過(guò)man time查看,這里僅僅列舉下time -v參數(shù)下的數(shù)據(jù)顯示。
oracle@linux[]:~
$/usr/bin/time -v echo test
test
Command being timed: "echo test"
User time (seconds): 0.00
System time (seconds): 0.00
Percent of CPU this job got: 0%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:00.01
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 0
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 113
Minor (reclaiming a frame) page faults: 16
Voluntary context switches: 0
Involuntary context switches: 0
Swaps: 0
File system inputs: 0
File system outputs: 0
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
從上面的輸出結(jié)果我們可以看到,除了CPU時(shí)間之外,通常我們還關(guān)心下面幾個(gè):
Major (requiring I/O) page faults
從磁盤(pán)中讀取了多少頁(yè)的數(shù)據(jù)。
Minor (reclaiming a frame) page faults
從操作系統(tǒng)緩存中讀取了多少頁(yè)的數(shù)據(jù)。
Swaps
進(jìn)程被swap出內(nèi)存的次數(shù)。
File system inputs/outputs
從文件系統(tǒng)中讀取/寫(xiě)入的數(shù)據(jù)數(shù)量。
Page size (bytes)
操作系統(tǒng)的頁(yè)大小。
關(guān)鍵詞標(biāo)簽:Linux
相關(guān)閱讀
熱門(mén)文章 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 Tomcat9.0如何安裝_Tomcat9.0環(huán)境變量配置方法 多種操作系統(tǒng)NTP客戶端配置 Linux操作系統(tǒng)修改IP
人氣排行 Linux下獲取CPUID、硬盤(pán)序列號(hào)與MAC地址 dmidecode命令查看內(nèi)存型號(hào) linux tc實(shí)現(xiàn)ip流量限制 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 linux下解壓rar文件 lcx.exe、nc.exe、sc.exe入侵中的使用方法 Ubuntu linux 關(guān)機(jī)、重啟、注銷(xiāo) 命令 查看linux服務(wù)器硬盤(pán)IO讀寫(xiě)負(fù)載