解决 linux 下 buff/cache 占用过高的问题

使用定时器:

执行:crontab -e

然后在配置文件中加入 如下配置,半小时执行一次 buff/cache 

 释放*/30 * * * * sync && echo 1 > /proc/sys/vm/drop_caches
*/30 * * * * sync && echo 2 > /proc/sys/vm/drop_caches
*/30 * * * * sync && echo 3 > /proc/sys/vm/drop_caches

解决 linux 下 buff/cache 占用过高的问题

 

 然后保存退出

执行crontab -l 查看刚添加的定时器是否成功

解决 linux 下 buff/cache 占用过高的问题

上一篇:Vim编辑器常用命令


下一篇:如何在Mac 上的“终端”中限制回滚行数?