$ free -m total used free shared buffers cached Mem: 1002 769 232 0 62 421 -/+ buffers/cache: 286 715 Swap: 1153 0 1153 第一部分Mem行: total 总物理内存数: 1002M used 已经使用的内存数: 769M free 空闲的内存数: 232M shared 当前已经废弃不用,总是0 buffers Buffer 缓存内存数: 62M cache...
by wing731 - Linux文档专区 - 2009-10-25 13:58:21 阅读(939) 回复(0)
自:http://blog.sina.com.cn/u/4a200e2b0100060d 在linux下查看内存我们一般用command free [root@nonamelinux ~]# free total used free shared buffers cached Mem: 386024 377116 8908 0 21280 155468 -/+ buffers/cache: 200368 185656 Swap: 393552 0 393552 下面是对这些数值的解释: 第二行(mem): total:总计物理内存的大小。 used:已使用多大。 free:可用有多少。 Shared:多个进程共享的内存总额。 Buffers/cached:磁盘...
自:http://blog.sina.com.cn/u/4a200e2b0100060d 在linux下查看内存我们一般用command free [root@nonamelinux ~]# free total used free shared buffers cached Mem: 386024 377116 8908 0 21280 155468 -/+ buffers/cache: 200368 185656 Swap: 393552 0 393552 下面是对这些数值的解释: 第二行(mem): total:总计物理内存的大小。 used:已使用多大。 free:可用有多少。 Shared:多个进程共享的内存总额。 Buffers/cached:磁...
在linux下查看内存我们一般用command free [root@nonamelinux ~]# free total used free shared buffers cached Mem: 386024 377116 8908 0 21280 155468 -/+ buffers/cache: 200368 185656 Swap: 393552 0 393552 下面是对这些数值的解释: 第二行(mem): total:总计物理内存的大小。 used:已使用多大。 free:可用有多少。 Shared:多个进程共享的内存总额。 Buffers/cached:磁盘缓存的大小。 第三行(-/+ buffers/cached): used:已...
来源:赛迪网 作者:korn linux中使用free可以查看系统内存使用状态, 默认单位为k blue_stone@blueice:~$ free total used free shared buffers cached Mem: 2075320 1879172 196148 0 533484 952588 -/+ buffers/cache: 393100 1682220 Swap: 2008084 0 2008084 Mem 行显示了从系统角度看来内存使用的情况, total是系统可用的内存大小, 数量上等于系统物理内存减去内核保留的内存. buffers和cached是系统用做缓冲的内存. buf...
Free 内存查看工具详细解析 linux and Unix 命令手册 性能监控部分 本命令手册以实用,简洁为原则,对于已经消化的内容,不附加详细的注解。 磁针石 联系方式: QQ:37391319 gmail and gtalk: xurongzhong@gmail.com 参考资料 *http://www.linux-cn.com/html/linux/other/20070508/29464.html 功能 display information about free and used memory on the system语法 常用用法 * 以M为单位查看内存使用情况 # ...
文章来源:www.linuxeden.com-linux伊甸园 linux中使用free可以查看系统内存使用状态, 默认单位为k blue_stone@blueice:~$ free total used free shared buffers cached Mem: 2075320 1879172 196148 0 533484 952588 -/+ buffers/cache: 393100 1682220 Swap: 2008084 0 2008084 Mem 行显示了从系统角度看来内存使用的情况, total是系统可用的内存大小, 数量上等于系统物理内存减去内核保留的内存. buffers和cached是...
当然这个查看不会是图形介面中的。 ①在/proc/meminfo里面写的很清楚,cat看看。 ②unix和linux中“free”和“total”都可以看内存多少。 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/16937/showart_164837.html
查看系统内核版本命令: [root@SYS3 ~]# uname -a linux SYS3 2.6.18-53.el5 #1 SMP Wed Oct 10 16:34:19 EDT 2007 x86_64 x86_64 x86_64 GNU/linux 查看系统版本 [root@SYS3 ~]# more /etc/redhat-release Red Hat Enterprise linux Server release 5.1 (Tikanga) 查看内核版本gcc版本 [root@SYS3 /]# more /proc/version linux version 2.6.18-53.el5 (brewbuilder@hs20-bc1-7.build.redhat.com) (gcc version 4.1.2 20070626 (...
linux下free命令查看内存情况 摘自:http://xinying.blog.51cto.com/441770/130408 (一) linux内存查看 free 命令 http://www.wujianrong.com/archives/2007/09/linux_free.html 功能说明:显示内存状态。 语 法: free [-bkmotV][-s ] 补充说明:free指令会显示内存的使用情况,包括实体内存,虚拟的交换文件内存,共享内存区段,以及系统核心使用的缓冲区等。 参 数: -b 以Byte为单位显示内存使用情况。 -k 以KB...
(1)pmap NAME pmap - report memory map of a process SYNOPSIS pmap [-x|-d] [-q] pid ... pmap -V (2)ps UNIX95 = ps -e -o 'pid,comm,args,pcpu,rsz,vsz,stime,user,uid' 其中rsz是是实际内存 (3)top top -d 1 然后shift + m(Sort by memory usage) (4)/proc/$PID/cat status Name: printall State: R (running) Tgid: 28036 Pid: 28036 PPid: 1 TracerPid: 0 Uid: 0 ...