Linux释放内存

在Linux上我们通常可以使用下面的命令来查看系统内存使用情况

$ free -m
$ cat /proc/meminfo

通常我们可以根据具体情况使用下面的命令来释放内存(需要root权限来执行)

  • Freeing Up the Page Cache
# echo 1 > /proc/sys/vm/drop_caches
# sync
  • Freeing Up the Dentries and Inodes
# echo 2 > /proc/sys/vm/drop_caches
# sync
  • Freeing Up the Page Cache, Dentries and Inodes
# echo 3 > /proc/sys/vm/drop_caches
# sync

也可以使用下面一条长命令

sudo su -c 'free -m && sync && echo 3 > /proc/sys/vm/drop_caches && sync && free -m'

在我的虚拟机上运行结果如下

              total        used        free      shared  buff/cache   available
Mem:           2848        2094          82          29         671         471
Swap:          2047         914        1133

              total        used        free      shared  buff/cache   available
Mem:           2848        2081         294          29         471         491
Swap:          2047         914        1133

转载请以链接形式标明本文地址
本文地址:http://blog.csdn.net/kongxx/article/details/51678487

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 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐