freedombone-zram 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Enables or disables zram
  12. # License
  13. # =======
  14. #
  15. # Copyright (C) 2015-2016 Bob Mottram <bob@freedombone.net>
  16. #
  17. # This program is free software: you can redistribute it and/or modify
  18. # it under the terms of the GNU Affero General Public License as published by
  19. # the Free Software Foundation, either version 3 of the License, or
  20. # (at your option) any later version.
  21. #
  22. # This program is distributed in the hope that it will be useful,
  23. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. # GNU Affero General Public License for more details.
  26. #
  27. # You should have received a copy of the GNU Affero General Public License
  28. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  29. PROJECT_NAME='freedombone'
  30. export TEXTDOMAIN=${PROJECT_NAME}-zram
  31. export TEXTDOMAINDIR="/usr/share/locale"
  32. DAEMON_FILENAME=/etc/systemd/system/zram.service
  33. function zram_daemon {
  34. echo '[Unit]' > $DAEMON_FILENAME
  35. echo 'Description=Zeronet Server' >> $DAEMON_FILENAME
  36. echo 'After=syslog.target' >> $DAEMON_FILENAME
  37. echo 'After=network.target' >> $DAEMON_FILENAME
  38. echo '[Service]' >> $DAEMON_FILENAME
  39. echo 'Type=simple' >> $DAEMON_FILENAME
  40. echo 'User=zram' >> $DAEMON_FILENAME
  41. echo 'Group=zram' >> $DAEMON_FILENAME
  42. echo 'WorkingDirectory=' >> $DAEMON_FILENAME
  43. echo "ExecStart=${PROJECT_NAME}-zram on" >> $DAEMON_FILENAME
  44. echo '' >> $DAEMON_FILENAME
  45. echo '[Install]' >> $DAEMON_FILENAME
  46. echo 'WantedBy=multi-user.target' >> $DAEMON_FILENAME
  47. }
  48. function zram_on {
  49. if [ ! -f $DAEMON_FILENAME ]; then
  50. if ! grep -q "options zram num_devices=1" /etc/modprobe.d/zram.conf; then
  51. echo 'options zram num_devices=1' >> /etc/modprobe.d/zram.conf
  52. fi
  53. # get the number of CPUs
  54. num_cpus=$(grep -c processor /proc/cpuinfo)
  55. # if something goes wrong, assume we have 1
  56. [ "$num_cpus" != 0 ] || num_cpus=1
  57. # set decremented number of CPUs
  58. decr_num_cpus=$((num_cpus - 1))
  59. # get the amount of memory in the machine
  60. mem_total_kb=$(grep MemTotal /proc/meminfo | grep -E --only-matching "[[:digit:]]+")
  61. mem_total=$((mem_total_kb * 1024))
  62. # load dependency modules
  63. modprobe zram num_devices=$num_cpus
  64. # initialize the devices
  65. for i in $(seq 0 $decr_num_cpus); do
  66. echo $((mem_total / num_cpus)) > /sys/block/zram$i/disksize
  67. done
  68. # Creating swap filesystems
  69. for i in $(seq 0 $decr_num_cpus); do
  70. mkswap /dev/zram$i
  71. done
  72. # Switch the swaps on
  73. for i in $(seq 0 $decr_num_cpus); do
  74. swapon -p 100 /dev/zram$i
  75. done
  76. zram_daemon
  77. fi
  78. }
  79. function zram_off {
  80. if [ -f $DAEMON_FILENAME ]; then
  81. # get the number of CPUs
  82. num_cpus=$(grep -c processor /proc/cpuinfo)
  83. # set decremented number of CPUs
  84. decr_num_cpus=$((num_cpus - 1))
  85. # Switching off swap
  86. for i in $(seq 0 $decr_num_cpus); do
  87. if [ "$(grep /dev/zram$i /proc/swaps)" != "" ]; then
  88. swapoff /dev/zram$i
  89. sleep 1
  90. fi
  91. done
  92. sleep 1
  93. rmmod zram
  94. rm $DAEMON_FILENAME
  95. fi
  96. }
  97. function show_help {
  98. echo ''
  99. echo $"${PROJECT_NAME}-zram [on|off]"
  100. echo ''
  101. exit 0
  102. }
  103. if [ ! $1 ]; then
  104. show_help
  105. else
  106. if [[ "$1" == "on" || "$1" == "enable" || "$1" == "yes" ]]; then
  107. zram_on
  108. else
  109. zram_off
  110. fi
  111. fi
  112. exit 0