• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






freshbreeze

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2013年5月14日

linux指令--内存相关free命令
摘要: linux141:~ # free --helpfree: invalid option -- '-'usage: free [-b|-k|-m|-g] [-l] [-o] [-t] [-s delay] [-c count] [-V] -b,-k,-m,-g show output in bytes, KB, MB, or GB -l show detailed low and high memory statistics -o use old format (no -/+buffers/cache line) -t display total for RAM + swap 阅读全文
posted @ 2013-05-14 16:57 freshbreeze 阅读(169) 评论(0) 推荐(0)
 
linux指令-动态查看系统资源情况
摘要: mpstat 2 查看CPU占用情况ps 监控进程状态(例如,是否有进程变为僵尸zombie状态)top 监控CPU,内存,进程等cat /proc/meminfo 监控总体内存使用状况 freenetstat -a 这个和windows下是一样的,监控网络连接状况查看磁盘空间:df -lh不同的linux系统有自己不同的监控工具,通用的一般有这些。1)CPU负荷命令:sar、mpstat(hpux,AIX)、top/topas、vmstat、w、uptime、ps2)虚拟内存使用(物理内存+交换区)命令:top/topas、vmstat、free、swapinfo(hpux)3)磁盘I/O命 阅读全文
posted @ 2013-05-14 16:52 freshbreeze 阅读(465) 评论(0) 推荐(0)
 
linux指令--查找Find
摘要: find /opt/SEE/profiles -name 'ssoconfig.xml'find / -name "run.sh"|xargs grep "Dlocal.timezone"find /home/mdsp/slcc * | xargs grep -l "SID=sdp"find /home/mdsp/as/config "*.cfg" | xargs grep "10.199.*"find /home/mdsp/slcc ".cfg" | xar 阅读全文
posted @ 2013-05-14 16:51 freshbreeze 阅读(161) 评论(0) 推荐(0)