
Linux命令
文章平均质量分 65
工具人01
ing
展开
-
nethogs
下载地址:https://github.com/raboof/nethogs/releases转载 2021-06-08 13:44:30 · 776 阅读 · 2 评论 -
字体设置(LC_ALL、LC_*、LANG)
LANG是LC_*的默认值LC_ALL比LC_*的优先级别高,设置完LC_ALL之后,会强制重置LC_*各个值,如果不将LC_ALL重新设置为空,则再无法设置LC_*的单个值。原创 2021-06-04 16:25:32 · 1860 阅读 · 1 评论 -
在Linux上,使用time优雅的统计程序运行时间
最近在使用time命令时,无意间发现了一些隐藏的小秘密和强大功能,今天分享给大家。time在 Linux 下是比较常用的命令,可以帮助我们方便的计算程序的运行时间,对比采用不同方案时程序的运行性能。看似简单的命令,其实蕴藏着很多细节和技巧,来跟着肖邦一起学习吧。1 基础用法详解先来看下最基础的用法,也可能是大家最常见的用法了root@chopin:~$timefind.-name"chopin.txt"......real0m0.174suser0m0.0...转载 2021-05-27 15:54:04 · 643 阅读 · 1 评论 -
iostat命令详解
iostat [ -c ] [ -d ] [ -h ] [ -k | -m ] [ -N ] [ -t ] [ -V ] [ -x ] [ -y ] [ -z ] [ -j { ID | LABEL | PATH | UUID | ... } ] [ [ -T ] -g group_name ] [ -p [ device [,...] | ALL ] ] [ device [...] | ALL ] [ interval [ count ] ] 推荐参数:iostata...原创 2021-02-04 15:15:16 · 280 阅读 · 0 评论 -
Linux主机CPU使用情况检查
top,vmstat,mpstat,pidstat,dstat,nmon,sartop :-c :Command-line/Program-name toggle Starts top with the last remembered `c' state reversed. Thus, if top was displaying command lines, now that field will show program names,原创 2021-05-14 10:20:31 · 346 阅读 · 3 评论 -
Linux命令之iotop
iotop -o -n 10 -d 5 -t -b > /root/io.log:-o,显示产生IO的进程,线程-n,显示10次-d,delay间隔5秒-t,显示时间戳-b,保存在文件中-d SEC--delay=SEC设置显示的间隔秒数,支持非整数-p PID--pid=PID只显示指定进程(PID)的信息-u USER--user=USER显示指定的用户的进程的信息-P--processes只显示进程,不显示所有线程-a--accumulated累积的I/O原创 2021-05-14 09:58:52 · 252 阅读 · 0 评论