centos7内存清理以及查看内存使用情况(个人记录)

查看内存使用情况

	free -m

内存清理

    #1.【推荐】释放网页缓存(To free pagecache),
    sync
    echo 1 > /proc/sys/vm/drop_caches

    #2.释放目录项和索引(To free dentries and inodes)
    sync
    echo 2 > /proc/sys/vm/drop_caches
    #3.释放网页缓存,目录项和索引(To free pagecache, dentries and inodes):
    sync
    echo 3 > /proc/sys/vm/drop_caches

CPU使用情况

	top

你可能感兴趣的:(虚拟机)