中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問(wèn)手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

Linux性能檢測(cè)常用的10個(gè)基本命令

時(shí)間:2019-08-10

常用dos命令大全及其用法_linux命令windows命令_linux常用命令

1. uptime

$ uptime

23:51:26 up 21:31, 1 user, load average: 30.02, 26.43, 19.0212

該命令可以大致的看出計(jì)算機(jī)的整體負(fù)載情況,load average后的數(shù)字分別表示計(jì)算機(jī)在1min、5min、15min內(nèi)的平均負(fù)載。

2. dmesg | tail

$ dmesg | tail

[1880957.563150] perl invoked oom-killer: gfp_mask=0x280da, order=0, oom_score_adj=0

[...]

jun 25 01:08:09 sip-db kernel: out of memory: kill process 30344 (oracle) score 54 or sacrifice child。the result is 2 hello worlds, the child process will execute the fork after ||, but for && the child process will start after printf. since the parent process get an id and child process get an 0. #include #include using namespace std。2009-01-22?06:54:33?thread-4105165728?error?command:?failed?to?kill?process?4793?running?perl:?( 。

oct3 22:17:25 server5 init: tty (/dev/tty3) main process (3274) killed by term signal。oct3 22:17:25 server5 init: tty (/dev/tty2) main process (3272) killed by term signal。oct3 22:17:25 server5 init: tty (/dev/tty5) main process (3279) killed by term signal。

[2320864.954447] TCP: Possible SYN flooding on port 7001. Dropping request. Check SNMP counters.123456

打印內(nèi)核環(huán)形緩存區(qū)中的內(nèi)容,可以用來(lái)查看一些錯(cuò)誤;

上面的例子中,顯示進(jìn)程18694 因引內(nèi)存越界被kill掉以及TCP request被丟棄的錯(cuò)誤。通過(guò)dmesg可以快速判斷是否有導(dǎo)致系統(tǒng)異常的問(wèn)題。

3. vmstat 1

$ vmstat 1

procs ---------memory---------- ---swap-- -----io---- -system-- ------cpu-----

r b swpd free buff cache si so bi bo in cs us sy id wa st

34 0 0 200889792 73708 591828 0 0 0 5 6 10 96 1 3 0 0

32 0 0 200889920 73708 591860 0 0 0 592 13284 4282 98 1 1 0 0

32 0 0 200890112 73708 591860 0 0 0 0 9501 2154 99 1 0 0 0

 上一個(gè)教程:Linux 基本操作命令總結(jié)