当前位置: 技术问答>linux和unix
如何在linux下查看计算机的内存大小?
来源: 互联网 发布时间:2015-05-23
本文导语: 如题?在线等!!急 | cat /proc/meminfo | top 也可以看的, 不过要求你的机器上装的有 | 应该说两者都可以的,top命令也是从/proc/meminfo中读出的 | ...
如题?在线等!!急
|
cat /proc/meminfo
|
top 也可以看的,
不过要求你的机器上装的有
不过要求你的机器上装的有
|
应该说两者都可以的,top命令也是从/proc/meminfo中读出的
|
直接打free就可以看到你内存的详细情况了,包括现在正在使用的内存情况.希望对你有些帮助
|
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
-s update every [delay] seconds
-c update [count] times
-V display version information and exit
[-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
-s update every [delay] seconds
-c update [count] times
-V display version information and exit
|
top
|
为什么我查看内存,发现占了很大一部分(已经停掉了很多不必要的服务)!
比我的XP还占内存!速度又慢!
受不了了
比我的XP还占内存!速度又慢!
受不了了
|
因为Linux将你暂时不使用的内存作为文件和数据缓存,以提高系统性能,当你需要这些内存时,系统会自动释放(不像windows那样,即使你有很多空闲内存,他也要访问一下磁盘中的pagefiles)
使用free命令
将used的值减去 buffer和cache的值就是你当前真实内存使用
使用free命令
将used的值减去 buffer和cache的值就是你当前真实内存使用
|
同意icedust(冰封尘想)的