Linux 手动清理 buff/cache

输入 free -h ,free 可用内存不多,其中buff/cache 占用比较多

linux系统在内存即将不足时可用自动清理buff/cache的内容

如果想手动释放,执行下列语句,然后再查看内存

echo 3 > /proc/sys/vm/drop_caches

Linux 手动清理 buff/cache_第1张图片

上面的echo 3 是清理所有缓存

echo 0 是不释放缓存

echo 1 是释放页缓存

ehco 2 是释放dentries和inodes缓存

echo 3 是释放 1 和 2 中说道的的所有缓存

你可能感兴趣的:(Linux,linux,运维,服务器)