当前位置:网站首页>linux下清理系统缓存并释放内存
linux下清理系统缓存并释放内存
2022-07-01 21:43:00 【51CTO】
当linux频繁读取文件后,物理内存会很快被用完,当程序结束后,内存不会被正常释放,而是一直caching,因此有必要手动清理系统缓存释放内存。
sync
操作系统在运行过程中,会把访问到的文件放到buffer中。为了避免断电,等故障造成数据丢失,我们需要把buffer中的缓存数据写入到磁盘
手动执行sync命令(描述:sync 命令运行 sync 子例程。如果必须停止系统,则运行sync 命令以确保文件系统的完整性。sync 命令将所有未写的系统缓冲区写到磁盘中,包含已修改的 i-node、已延迟的块 I/O 和读写映射文件
手动释放内存的命令
drop_caches的值可以是0-3之间的数字,代表不同的含义:
- 0:不释放(系统默认值)
- 1:释放页缓存
- 2:释放dentries和inodes
查看内存
恢复默认设置
缓存可以提升系统的运行效率,如果发现系统内存经常不够用,应该考虑添加内存,而不是经常清理
原文链接: https://rumenz.com/rumenbiji/linux_drop_caches.html
微信公众号:入门小站
- 回复【1001】获取 linux常用命令速查手册
- 回复【10010】获取 阿里云ECS运维Linux系统诊断
- 回复【10012】获取 Linux学习笔记【强悍总结值得一看】
- 回复【10013】获取 shell简明教程

边栏推荐
- PHP reflective XSS, reflective XSS test and repair
- Difference and use between require and import
- NIO与传统IO的区别
- What is the difference between consonants and Initials? (difference between initials and consonants)
- Separate the letters and numbers in the string so that the letters come first and the array comes last
- 游览器打开摄像头案例
- Introduction à l'ingénierie logicielle (sixième édition) notes d'examen de Zhang haifan
- List announced | outstanding intellectual property service team in China in 2021
- Airserver mobile phone third-party screen projection computer software
- Interview question: what is the difference between MySQL's Union all and union, and how many join methods MySQL has (Alibaba interview question) [easy to understand]
猜你喜欢
随机推荐
业务可视化-让你的流程图'Run'起来
Pytest collection (2) - pytest operation mode
详解JMM
Burpsuite simple packet capturing tutorial [easy to understand]
Four methods of JS array splicing [easy to understand]
Communication between browser tab pages
详解LockSupport的使用
Application of real estate management based on 3D GIS
MySQL empties table data
Microsoft, Columbia University | Godel: large scale pre training of goal oriented dialogue
NIO与传统IO的区别
灵动微 MM32 多路ADC-DMA配置
Spark interview questions
【MySQL】explain的基本使用以及各列的作用
Yan Rong looks at how to formulate a multi cloud strategy in the era of hybrid cloud
函数基本学习之一
Manually implement function isinstanceof (child, parent)
AirServer手机第三方投屏电脑软件
MySQL清空表数据
idea中类中显示成员变量和方法









