forked from chln/shadowsocks_bash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrskernel.sh
106 lines (93 loc) · 3.51 KB
/
rskernel.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
#!/usr/bin/env bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
#=========================================================#
# One Click Change Kernel to Serverspeeder for CentOS 6/7 #
# Github: https://github.com/uxh/shadowsocks_bash #
# Author: www.banwagongzw.com && www.vultrcn.com #
#=========================================================#
#Color
red='\033[0;31m'
green='\033[0;32m'
yellow='\033[0;33m'
plain='\033[0m'
#Check root
[[ $EUID -ne 0 ]] && echo -e "${red}This script must be run as root!${plain}" && exit 1
#Start information
clear
echo "#=========================================================#"
echo "# One Click Change Kernel to Serverspeeder for CentOS 6/7 #"
echo "# Github: https://github.com/uxh/shadowsocks_bash #"
echo "# Author: www.banwagongzw.com && www.vultrcn.com #"
echo "#=========================================================#"
#Check system
check_system(){
local value=$1
local release=''
if [[ -f /etc/redhat-release ]]; then
release="centos"
elif cat /etc/issue | grep -Eqi "centos|red hat|redhat"; then
release="centos"
elif cat /proc/version | grep -Eqi "centos|red hat|redhat"; then
release="centos"
fi
if [ "$value" == "$release" ]; then
return 0
else
return 1
fi
}
#Get centos main version
get_centos_main_version(){
if [[ -s /etc/redhat-release ]]; then
grep -oE "[0-9.]+" /etc/redhat-release
else
grep -oE "[0-9.]+" /etc/issue
fi
}
#Check centos main version
check_centos_main_version(){
local num=$1
local version="$(get_centos_main_version)"
local main_ver=${version%%.*}
if [ "$num" == "$main_ver" ]; then
return 0
else
return 1
fi
}
#Main
if check_system centos; then
if check_centos_main_version 6; then
echo -e "[${green}INFO${plain}] System OS is CentOS6. Processing..."
echo -e "-------------------------------------------"
rpm -ivh https://filedown.me/Linux/Kernel/kernel-firmware-2.6.32-504.3.3.el6.noarch.rpm
rpm -ivh https://filedown.me/Linux/Kernel/kernel-2.6.32-504.3.3.el6.x86_64.rpm --force
if [ $? -eq 0 ]; then
number=$(cat /boot/grub/grub.conf | awk '$1=="title" {print i++ " : " $NF}' | grep '2.6.32-504' | awk '{print $1}')
sed -i "s/^default=.*/default=$number/g" /boot/grub/grub.conf
echo -e "-------------------------------------------"
echo -e "[${green}INFO${plain}] Success! Your server will reboot in 3s..."
sleep 3
reboot
else
echo -e "[${red}ERROR${plain}] Change kernel failed!"
fi
elif check_centos_main_version 7; then
echo -e "[${green}INFO${plain}] System OS is CentOS7. Processing..."
echo -e "-------------------------------------------"
rpm -ivh https://filedown.me/Linux/Kernel/kernel-3.10.0-229.1.2.el7.x86_64.rpm --force
if [ $? -eq 0 ]; then
grub2-set-default `awk -F\' '$1=="menuentry " {print i++ " : " $2}' /etc/grub2.cfg | grep '(3.10.0-229.1.2.el7.x86_64) 7 (Core)' | awk '{print $1}'`
echo -e "-------------------------------------------"
echo -e "[${green}INFO${plain}] Success! Your server will reboot in 3s..."
sleep 3
reboot
else
echo -e "[${red}ERROR${plain}] Change kernel failed!"
fi
fi
else
echo -e "[${yellow}WARNNING${plain}] This script only support CentOS6/7!"
exit 1
fi