美文网首页
linux 清空 swap

linux 清空 swap

作者: 王伟杰 | 来源:发表于2015-10-09 20:13 被阅读376次

    清空 cache

    sync;
    echo 3 > /proc/sys/vm/drop_caches
    

    清空 swap

    #!/bin/bash
    
    free_data="$(free)"
    mem_data="$(echo "$free_data" | grep 'Mem:')"
    free_mem="$(echo "$mem_data" | awk '{print $4}')"
    buffers="$(echo "$mem_data" | awk '{print $6}')"
    cache="$(echo "$mem_data" | awk '{print $7}')"
    total_free=$((free_mem + buffers + cache))
    used_swap="$(echo "$free_data" | grep 'Swap:' | awk '{print $3}')"
    
    echo -e "Free memory:\t$total_free kB ($((total_free / 1024)) MB)\nUsed swap:\t$used_swap kB ($((used_swap / 1024)) MB)"
    if [[ $used_swap -eq 0 ]]; then
        echo "Congratulations! No swap is in use."
    elif [[ $used_swap -lt $total_free ]]; then
        echo "Freeing swap..."
        sudo swapoff -a
        sudo swapon -a
    else
        echo "Not enough free memory. Exiting."
        exit 1
    fi
    

    相关文章

      网友评论

          本文标题:linux 清空 swap

          本文链接:https://www.haomeiwen.com/subject/vhvncttx.html