linux查看内存命令——笔记
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1、查看当前操作系统发行版信息
# cat /etc/issue | grep Linux
2、查看CPU是几核
#cat /proc/cpuinfo |grep "cores"|uniq
3、查看内存使用情况
# free
4、查看各应用内存占用情况
# ps -e -o 'pid,comm,args,pcpu,rsz,vsz,stime,user,uid'
rsz为内存占用情况,单位KB
或者
# top
或者
top -H -p pid
查看java应用的进程情况
top -b -n 1 | grep java| awk '{print "PID:"$1",mem:"$6",CPU percent:"$9"%","mem percent:"$10"%"}'
5、查看进程
# ps -ef|grep java
6、内存保存
jmap -dump:format=b,file=pid.hprof pid
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献5条内容
所有评论(0)