Created
June 21, 2016 02:41
-
-
Save sultanqasim/79799883c6b81c710e36a38008dfa374 to your computer and use it in GitHub Desktop.
ZRAM config for Raspberry Pi 3
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 | |
# Raspberry Pi ZRAM script | |
# Tuned for quad core, 1 GB RAM models | |
# put me in /etc/init.d/zram.sh and make me executable | |
# then run "sudo update-rc.d zram.sh defaults" | |
modprobe zram | |
echo 3 >/sys/devices/virtual/block/zram0/max_comp_streams | |
echo lz4 >/sys/devices/virtual/block/zram0/comp_algorithm | |
echo 268435456 >/sys/devices/virtual/block/zram0/mem_limit | |
echo 536870912 >/sys/devices/virtual/block/zram0/disksize | |
mkswap /dev/zram0 | |
swapon -p 0 /dev/zram0 | |
sysctl vm.swappiness=70 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When "sudo update-rc.d zram.sh defaults" I get:
So... what now?