-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.sh
268 lines (251 loc) · 8.85 KB
/
lib.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
public_file=/www/server/panel/install/public.sh
public_file_Check=$(cat ${public_file} 2>/dev/null)
if [ ! -f $public_file ] || [ -z "${public_file_Check}" ];then
wget -O $public_file https://download.bt.cn/install/public.sh -T 30;
fi
. $public_file
if [ -z "${NODE_URL}" ];then
download_Url="https://download.bt.cn"
else
download_Url=$NODE_URL
fi
echo ${download_Url}
mkdir -p /www/server
run_path="/root"
Is_64bit=`getconf LONG_BIT`
ubuntuVerCheck=$(cat /etc/issue|grep "Ubuntu 18")
debianVerCheck=$(cat /etc/issue|grep Debian|grep 10)
sysCheck=$(uname -m)
UBUNTU_VER=$(cat /etc/issue|grep -i ubuntu|awk '{print $2}'|cut -d. -f1)
DEBIAN_VER=$(cat /etc/issue|grep -i debian|awk '{print $3}')
if [ "${UBUNTU_VER}" == "18" ] || [ "${UBUNTU_VER}" == "20" ];then
debPath="u${UBUNTU_VER}"
elif [ "${DEBIAN_VER}" == "10" ] || [ "${DEBIAN_VER}" == "11" ]; then
debPath="d${DEBIAN_VER}"
fi
if [ -z "${debPath}" ] || [ "${sysCheck}" != "x86_64" ];then
wget -O lib.sh ${download_Url}/install/0/lib.sh && sh lib.sh $1 $2
exit;
fi
opensslVersion="1.0.2r"
curlVersion="7.64.0"
freetypeVersion="2.9.1"
pcreVersion="8.42"
Install_Sendmail()
{
if [ "${PM}" = "yum" ]; then
yum install postfix mysql-libs -y
if [ "${centos_version}" != '' ];then
systemctl start postfix
systemctl enable postfix
else
service postfix start
chkconfig --level 2345 postfix on
fi
elif [ "${PM}" = "apt-get" ]; then
apt-get install sendmail sendmail-cf -y
fi
}
Install_Curl()
{
if [ ! -f "/usr/local/curl/bin/curl" ];then
cd /usr/local
wget -O bt-curl764.tar.gz ${download_Url}/deb/archive/${debPath}/bt-curl764.tar.gz
tar -xvf bt-curl764.tar.gz
rm -f bt-curl764.tar.gz
cd ${run_path}
fi
}
Install_Openssl()
{
if [ ! -f "/usr/local/openssl/bin/openssl" ];then
cd /usr/local
wget -O bt-openssl102.tar.gz ${download_Url}/deb/archive/${debPath}/bt-openssl102.tar.gz
tar -xvf bt-openssl102.tar.gz
echo "/usr/local/openssl/lib" > /etc/ld.so.conf.d/zopenssl.conf
ldconfig
rm -f bt-openssl102.tar.gz
cd ${run_path}
fi
}
Install_Pcre(){
Cur_Pcre_Ver=`pcre-config --version|grep '^8.' 2>&1`
if [ "$Cur_Pcre_Ver" == "" ];then
wget -O pcre-${pcreVersion}.tar.gz ${download_Url}/src/pcre-${pcreVersion}.tar.gz -T 5
tar zxf pcre-${pcreVersion}.tar.gz
rm -f pcre-${pcreVersion}.tar.gz
cd pcre-${pcreVersion}
if [ "$Is_64bit" == "64" ];then
./configure --prefix=/usr --docdir=/usr/share/doc/pcre-${pcreVersion} --libdir=/usr/lib64 --enable-unicode-properties --enable-pcre16 --enable-pcre32 --enable-pcregrep-libz --enable-pcregrep-libbz2 --enable-pcretest-libreadline --disable-static --enable-utf8
else
./configure --prefix=/usr --docdir=/usr/share/doc/pcre-${pcreVersion} --enable-unicode-properties --enable-pcre16 --enable-pcre32 --enable-pcregrep-libz --enable-pcregrep-libbz2 --enable-pcretest-libreadline --disable-static --enable-utf8
fi
make -j${cpuCore}
make install
cd ..
rm -rf pcre-${pcreVersion}
fi
}
Install_Freetype()
{
if [ ! -f "/usr/bin/freetype-config" ] && [ ! -f "/usr/local/freetype/bin/freetype-config" ]; then
if [ "${DEBIAN_VER}" == "11" ] || [ "${UBUNTU_VER}" == "20" ];then
cd /usr/local
wget -O freetype.tar.gz ${download_Url}/deb/archive/${debPath}/freetype.tar.gz
tar -xvf freetype.tar.gz
rm -f freetype.tar.gz
cd ${run_path}
return
fi
cd ${run_path}
wget -O freetype-${freetypeVersion}.tar.gz ${download_Url}/src/freetype-${freetypeVersion}.tar.gz -T 5
tar zxf freetype-${freetypeVersion}.tar.gz
cd freetype-${freetypeVersion}
./configure --prefix=/usr/local/freetype --enable-freetype-config
make -j${cpuCore}
make install
cd ../
rm -rf freetype-${freetypeVersion}
rm -f freetype-${freetypeVersion}.tar.gz
fi
}
Install_Libiconv()
{
if [ -d '/usr/local/libiconv' ];then
return
fi
cd ${run_path}
if [ ! -f "libiconv-1.14.tar.gz" ];then
wget -O libiconv-1.14.tar.gz ${download_Url}/src/libiconv-1.14.tar.gz -T 5
fi
mkdir /patch
wget -O /patch/libiconv-glibc-2.16.patch ${download_Url}/src/patch/libiconv-glibc-2.16.patch -T 5
tar zxf libiconv-1.14.tar.gz
cd libiconv-1.14
patch -p0 < /patch/libiconv-glibc-2.16.patch
./configure --prefix=/usr/local/libiconv --enable-static
make -j${cpuCore}
make install
cd ${run_path}
rm -rf libiconv-1.14
rm -f libiconv-1.14.tar.gz
echo -e "Install_Libiconv" >> /www/server/lib.pl
}
Install_Libmcrypt()
{
LIBS_MCRYPT=$(ldconfig -p|grep libmcrypt.so)
if [ "${LIBS_MCRYPT}" ];then
return;
fi
cd ${run_path}
if [ ! -f "libmcrypt-2.5.8.tar.gz" ];then
wget -O libmcrypt-2.5.8.tar.gz ${download_Url}/src/libmcrypt-2.5.8.tar.gz -T 5
fi
tar zxf libmcrypt-2.5.8.tar.gz
cd libmcrypt-2.5.8
./configure
make -j${cpuCore}
make install
/sbin/ldconfig
cd libltdl/
./configure --enable-ltdl-install
make && make install
ln -sf /usr/local/lib/libmcrypt.la /usr/lib/libmcrypt.la
ln -sf /usr/local/lib/libmcrypt.so /usr/lib/libmcrypt.so
ln -sf /usr/local/lib/libmcrypt.so.4 /usr/lib/libmcrypt.so.4
ln -sf /usr/local/lib/libmcrypt.so.4.4.8 /usr/lib/libmcrypt.so.4.4.8
ldconfig
cd ${run_path}
rm -rf libmcrypt-2.5.8
rm -f libmcrypt-2.5.8.tar.gz
echo -e "Install_Libmcrypt" >> /www/server/lib.pl
}
Install_Mcrypt()
{
if [ -f '/usr/bin/mcrypt' ] || [ -f '/usr/local/bin/mcrypt' ];then
return;
fi
cd ${run_path}
if [ ! -f "mcrypt-2.6.8.tar.gz" ];then
wget -O mcrypt-2.6.8.tar.gz ${download_Url}/src/mcrypt-2.6.8.tar.gz -T 5
fi
tar zxf mcrypt-2.6.8.tar.gz
cd mcrypt-2.6.8
./configure
make -j${cpuCore}
make install
cd ${run_path}
rm -rf mcrypt-2.6.8
rm -f mcrypt-2.6.8.tar.gz
echo -e "Install_Mcrypt" >> /www/server/lib.pl
}
Install_Mhash()
{
LIBS_MHASH=$(ldconfig -p|grep libmhash.so)
if [ "${LIBS_MHASH}" ];then
return;
fi
cd ${run_path}
if [ ! -f "mhash-0.9.9.9.tar.gz" ];then
wget -O mhash-0.9.9.9.tar.gz ${download_Url}/src/mhash-0.9.9.9.tar.gz -T 5
fi
tar zxf mhash-0.9.9.9.tar.gz
cd mhash-0.9.9.9
./configure
make -j${cpuCore}
make install
ln -sf /usr/local/lib/libmhash.a /usr/lib/libmhash.a
ln -sf /usr/local/lib/libmhash.la /usr/lib/libmhash.la
ln -sf /usr/local/lib/libmhash.so /usr/lib/libmhash.so
ln -sf /usr/local/lib/libmhash.so.2 /usr/lib/libmhash.so.2
ln -sf /usr/local/lib/libmhash.so.2.0.1 /usr/lib/libmhash.so.2.0.1
ldconfig
cd ${run_path}
rm -rf mhash-0.9.9.9*
echo -e "Install_Mhash" >> /www/server/lib.pl
}
Install_Aptlib(){
deepinSys=`cat /etc/issue`
#apt-get autoremove -y
apt-get -fy install
export DEBIAN_FRONTEND=noninteractive
apt-get install -y build-essential gcc g++ make
if [[ "${deepinSys}" =~ eepin ]]; then
for aptPack in debian-keyring debian-archive-keyring build-essential gcc g++ make cmake autoconf automake re2c wget cron bzip2 libzip-dev libc6-dev bison file rcconf flex vim bison m4 gawk less cpp binutils diffutils unzip tar bzip2 libbz2-dev libncurses5 libncurses5-dev libtool libevent-dev openssl libssl-dev zlibc libsasl2-dev libltdl3-dev libltdl-dev zlib1g zlib1g-dev libbz2-1.0 libbz2-dev libglib2.0-0 libglib2.0-dev libpng3 libpng12-0 libpng12-dev libkrb5-dev libpq-dev libpq5 gettext libpng12-dev libxml2-dev libcap-dev ca-certificates libc-client2007e-dev psmisc patch git libc-ares-dev libicu-dev e2fsprogs libxslt-dev libc-client-dev xz-utils libgd3 libgd-dev mcrypt libmcrypt-dev libmcrypt4;
do apt-get -y install $aptPack --force-yes; done
rm -rf /usr/local/openssl
Install_OpenSSL
else
for aptPack in debian-keyring debian-archive-keyring build-essential gcc g++ make cmake autoconf automake re2c wget cron bzip2 libzip-dev libc6-dev file rcconf flex vim bison m4 gawk less cpp binutils diffutils tar libbz2-dev libncurses5 libncurses5-dev libtool libevent-dev openssl libssl-dev zlibc libsasl2-dev libltdl3-dev libltdl-dev zlib1g zlib1g-dev libbz2-1.0 libglib2.0-0 libglib2.0-dev libpng3 libjpeg62 libjpeg62-dev libpng12-0 libpng12-dev libkrb5-dev libpq-dev libpq5 gettext libxml2-dev libcap-dev ca-certificates libc-client2007e-dev psmisc patch git libc-ares-dev libicu-dev e2fsprogs libxslt-dev libc-client-dev xz-utils libgd3 libgd-dev mcrypt libmcrypt-dev libmcrypt4 libmhash-dev libmhash2 libwebp-dev libvpx-dev libfreetype6-dev libjpeg-dev;
do apt-get -y install $aptPack --force-yes; done
fi
ln -s /usr/lib/x86_64-linux-gnu/libjpeg.so.8 /usr/lib/libjpeg.so
ln -s /usr/lib/x86_64-linux-gnu/libjpeg.a /usr/lib/libjpeg.a
ln -s /usr/lib/x86_64-linux-gnu/libpng12.so.0 /usr/lib/libpng.so
ln -s /usr/lib/x86_64-linux-gnu/libpng.a /usr/lib/libpng.a
echo "true" > /etc/bt_lib.lock
}
Install_Lib()
{
lockFile="/etc/bt_lib.lock"
if [ -f "${lockFile}" ]; then
return
fi
Install_Aptlib
Install_Sendmail
Run_User="www"
groupadd ${Run_User}
useradd -s /sbin/nologin -g ${Run_User} ${Run_User}
}
Install_Lib
Install_Openssl
Install_Pcre
Install_Curl
Install_Mhash
Install_Libmcrypt
Install_Mcrypt
Install_Libiconv
Install_Freetype