Last active
January 31, 2022 18:30
-
-
Save DanielChuDC/e8bf2dd3d3729d28ae9cfef105c51e87 to your computer and use it in GitHub Desktop.
zram.sh (modified version * 2 )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| export LANG=C | |
| cores=$(nproc --all) | |
| # disable zram | |
| core=0 | |
| while [ $core -lt $cores ]; do | |
| if [[ -b /dev/zram$core ]]; then | |
| swapoff /dev/zram$core | |
| fi | |
| let core=core+1 | |
| done | |
| if [[ -n $(lsmod | grep zram) ]]; then | |
| rmmod zram | |
| fi | |
| if [[ $1 == stop ]]; then | |
| exit 0 | |
| fi | |
| # disable all | |
| swapoff -a | |
| # enable zram | |
| modprobe zram num_devices=$cores | |
| echo lz4 > /sys/block/zram0/comp_algorithm | |
| totalmem=$(free | grep -e "^Mem:" | awk '{print $2}') | |
| # mem=$(( ($totalmem / $cores)* 1024 )) | |
| mem=$(( $totalmem*1024 )*2 ) | |
| core=0 | |
| while [ $core -lt $cores ]; do | |
| echo $mem > /sys/block/zram$core/disksize | |
| mkswap /dev/zram$core | |
| swapon -p 5 /dev/zram$core | |
| let core=core+1 | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment