-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathzram.sh
157 lines (139 loc) · 4.19 KB
/
zram.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#!/bin/bash
#
# Auto install Swap
#
# System Required: CentOS 6+, Debian8+, Ubuntu16+
#
# Copyright (C) 2025 Mr.Amini Nezhad
#
# my Github: https://github.com/MrAminiDev/
install_prerequisites() {
echo "Checking for prerequisites..."
if ! command -v modprobe &> /dev/null; then
echo "Installing kmod package for modprobe..."
sudo apt update && sudo apt install -y kmod
fi
if ! ls /lib/modules/$(uname -r)/kernel/drivers/block | grep -q zram; then
echo "Installing ZRAM kernel module..."
sudo apt update && sudo apt install -y linux-modules-extra-$(uname -r)
fi
echo "Prerequisites installed."
}
define_zram() {
read -p "Enter the size of ZRAM in MB: " zram_size
if [[ $zram_size =~ ^[0-9]+$ ]]; then
if ! sudo modprobe zram; then
echo "Error: ZRAM module could not be loaded. Please check your kernel version."
return
fi
if [[ ! -e /sys/block/zram0 ]]; then
echo "Error: ZRAM device not found."
return
fi
echo "Creating ZRAM of size ${zram_size}MB..."
sudo bash -c "echo $(($zram_size * 1024 * 1024)) > /sys/block/zram0/disksize"
sudo mkswap /dev/zram0
sudo swapon /dev/zram0
echo "$zram_size" | sudo tee /etc/zram_config > /dev/null
echo "ZRAM created and activated. Configuration saved."
# Ensure persistence across reboots using systemd service
create_zram_service $zram_size
else
echo "Invalid size entered. Please enter a numeric value in MB."
fi
}
create_zram_service() {
local zram_size=$1
sudo bash -c "cat <<EOL > /etc/systemd/system/zram.service
[Unit]
Description=ZRAM Configuration
After=multi-user.target
[Service]
Type=oneshot
ExecStart=/bin/bash -c 'modprobe zram && echo \$(( ${zram_size} * 1024 * 1024 )) > /sys/block/zram0/disksize && mkswap /dev/zram0 && swapon /dev/zram0'
RemainAfterExit=true
[Install]
WantedBy=multi-user.target
EOL"
sudo systemctl daemon-reload
sudo systemctl enable zram.service
echo "Systemd service for ZRAM created and enabled."
}
restore_zram() {
if [[ -f /etc/zram_config ]]; then
if ! sudo modprobe zram; then
echo "Error: ZRAM module could not be loaded."
return
fi
zram_size=$(cat /etc/zram_config)
if [[ ! -e /sys/block/zram0 ]]; then
echo "Error: ZRAM device not found."
return
fi
echo "Restoring ZRAM of size ${zram_size}MB..."
sudo bash -c "echo $(($zram_size * 1024 * 1024)) > /sys/block/zram0/disksize"
sudo mkswap /dev/zram0
sudo swapon /dev/zram0
echo "ZRAM restored and activated."
fi
}
delete_zram() {
echo "Removing ZRAM..."
if [[ -e /dev/zram0 ]]; then
sudo swapoff /dev/zram0
sudo modprobe -r zram
fi
sudo rm -f /etc/zram_config
if [[ -f /etc/systemd/system/zram.service ]]; then
sudo systemctl disable zram.service
sudo rm -f /etc/systemd/system/zram.service
sudo systemctl daemon-reload
fi
echo "ZRAM removed and configuration deleted."
}
display_zram_info() {
clear
if [[ -e /sys/block/zram0 ]]; then
disksize=$(cat /sys/block/zram0/disksize)
mem_used=$(cat /sys/block/zram0/mem_used_total)
echo "ZRAM Information:"
echo "- Disk Size: $((disksize / 1024 / 1024)) MB"
echo "- Memory Used: $((mem_used / 1024 / 1024)) MB"
else
echo "No active ZRAM device found."
fi
echo ""
read -p "Press 0 to return to the menu: " return_choice
if [[ $return_choice == "0" ]]; then
clear
return
fi
}
install_prerequisites
restore_zram
while true; do
echo "Choose an option:"
echo "1 - Create ZRAM"
echo "2 - Delete ZRAM"
echo "3 - Display ZRAM Information"
echo "0 - Quit"
read -p "Enter your choice: " choice
case $choice in
1)
define_zram
;;
2)
delete_zram
;;
3)
display_zram_info
;;
0)
echo "Exiting..."
exit 0
;;
*)
echo "Invalid option. Please choose..."
;;
esac
done