123456789101112131415161718192021222324252627282930313233343536 |
- #!/bin/sh
- export basedir=/home/syjy/ipfcstV3
- chmod -R 777 $basedir
- cd $basedir/jdk
- tar -zxvf jdk-8u261-linux-x64.tar.gz
- if test -e /home/syjy/patch.zip
- then
- cd /home/syjy
- unzip -o patch.zip
- fi
- cp -f $basedir/settings/console /etc/init.d/
- chmod 777 /etc/init.d/console
- if test -x /usr/lib/systemd/system
- then
- cp -f $basedir/settings/console.service /usr/lib/systemd/system
-
- chmod 777 /usr/lib/systemd/system/console.service
-
- systemctl daemon-reload
- systemctl enable console
-
- else
- chkconfig console on
- fi
- service console start
- echo "Installation is complete!"
|