Update ambe-debian-installer

This commit is contained in:
ShaYmez 2021-07-08 00:46:50 +01:00 committed by GitHub
parent 2aaf0920c6
commit 84c2f3e62b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,4 @@
#!/bin/bash #!/bin/bash
#A tool to install AMBE server. #A tool to install AMBE server.
#This is essentially a scripted version of: #This is essentially a scripted version of:
@ -11,8 +12,7 @@
# systemctl start ambed #to start ambed # systemctl start ambed #to start ambed
# ambed logs are part of /var/log/messages # ambed logs are part of /var/log/messages
#Lets begin------------------------------------------------------------------------------------------------- #Lets begin-------------------------------------------------------------------------------------------------
WHO=$(whoami) if [ "$EUID" -ne 0 ];
if [ "$WHO" != "root" ];
then then
echo "" echo ""
echo "You Must be root to run this script!!" echo "You Must be root to run this script!!"
@ -21,7 +21,7 @@ fi
if [ ! -e "/etc/debian_version" ] if [ ! -e "/etc/debian_version" ]
then then
echo "" echo ""
echo "This script is only tested in Debian 8,9 and x64 cpu Arch. for now." echo "This script is only tested in Debian 8,9,10. for now."
exit 0 exit 0
fi fi
DIRDIR=$(pwd) DIRDIR=$(pwd)
@ -54,10 +54,10 @@ then
cp libftd2xx.* /usr/local/lib cp libftd2xx.* /usr/local/lib
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.6 chmod 0755 /usr/local/lib/libftd2xx.so.1.4.6
ln -sf /usr/local/lib/libftd2xx.so.1.4.6 /usr/local/lib/libftd2xx.so ln -sf /usr/local/lib/libftd2xx.so.1.4.6 /usr/local/lib/libftd2xx.so
elif [ "$ARC" = "armv71" ]; elif [ "$ARC" = "armv7l" ];
then then
wget $ARM wget $ARM
tar libftd2xx-arm-v7-hf-1.4.22.tgz tar zxf libftd2xx-arm-v7-hf-1.4.22.tgz
cd release/build cd release/build
cp libftd2xx.* /usr/local/lib cp libftd2xx.* /usr/local/lib
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.22 chmod 0755 /usr/local/lib/libftd2xx.so.1.4.22