Files
file-online-preview/server/src/main/bin/install.sh

36 lines
1014 B
Java
Raw Normal View History

2019-04-16 13:48:57 +08:00
#!/bin/bash
cd /tmp
install_redhat() {
2021-06-23 10:26:22 +08:00
wget https://kkfileview.keking.cn/LibreOffice_7.1.4_Linux_x86-64_rpm.tar.gz -cO LibreOffice_7_rpm.tar.gz && tar -zxf /tmp/LibreOffice_7_rpm.tar.gz && cd /tmp/LibreOffice_7.1.4.2_Linux_x86-64_rpm/RPMS
echo $?
2019-04-16 13:48:57 +08:00
if [ $? -eq 0 ];then
yum install -y libXext.x86_64
yum groupinstall -y "X Window System"
2021-06-23 10:26:22 +08:00
yum installlocalho
2019-04-16 13:48:57 +08:00
echo 'install finshed...'
else
echo 'download package error...'
fi
}
install_ubuntu() {
2021-06-23 10:26:22 +08:00
wget https://kkfileview.keking.cn/LibreOffice_7.1.4_Linux_x86-64_deb.tar.gz -cO LibreOffice_7_deb.gz && tar -zxf /tmp/LibreOffice_7_deb.tar.gz && cd /tmp/LibreOffice_7.1.4.2_Linux_x86-deb/RPMS
2019-04-16 13:48:57 +08:00
echo $?
if [ $? -eq 0 ];then
2021-06-23 10:26:22 +08:00
apt-get install -y libxinerama1 libcairo2 libcups2 libx11-xcb1
2019-04-16 13:48:57 +08:00
dpkg -i *.deb
echo 'install finshed...'
else
echo 'download package error...'
fi
}
if [ -f "/etc/redhat-release" ]; then
2019-04-16 14:20:02 +08:00
yum install -y wget
2019-04-16 13:48:57 +08:00
install_redhat
else
2019-04-16 14:20:02 +08:00
apt-get install -y wget
2019-04-16 13:48:57 +08:00
install_ubuntu
fi