I am trying to install the application, but the executable script has determined that Debian 8.2 does not meet the installation requirements. Is it really so?
Here is a part of the source (definition of the Linux version):
# Find out what flavor of Linux were running on. Added NX075P30 if $( grep -i "SuSE " /proc/version 1>$NULL 2>&1) ; then # Its SuSE. MIN_REV=10 # Minimum SuSE version. RELEASE_FILE=/etc/SuSE-release # Path to the release info file. # Check the rev level by reading VERSION out of the release file. if SUSE_REV=$(grep -i VERSION $RELEASE_FILE 2>$NULL) ; then # Edit out anything but numbers. #SUSE_REV=$(echo $SUSE_REV | sed 's![AZ,az,=,-,., ]!!g') # Translate out anything BUT digits, we just want the number(s). SUSE_REV=$(echo $SUSE_REV | tr -cd [:digit:] ) # Check for the minimum rev. [ "$SUSE_REV" -lt $MIN_REV ] && { # Must be at least MIN_REV. print "${WARN}Unsupported Linux version: SuSE $SUSE_REV. \r\t The $PRODNAME $NX_VER required minimum is: SuSE ${MIN_REV}." >&2 sleep 3 } else # Couldnt find the file or couldnt get the version num. print "${WARN}Unable to determine SuSE Linux version. \r\t Could not find SuSE release file: $RELEASE_FILE \r\t or, could not get SuSE version number from file. \r\t The minimum required version is: SuSE ${MIN_REV}. \r\t $PRODNAME $NX_VER MAY not run on this machine. " >&2 sleep 3 fi # Now find X11/app-defaults dir. It moved so check two known places. [ -d /usr/share/X11/app-defaults ] && { # Ck New location. X11_DEFS_DIR=/usr/share/X11/app-defaults ;} : ${X11_DEFS_DIR:=/usr/lib/X11/app-defaults} # Default to old location. elif $( grep -i "RED HAT " /proc/version 1>$NULL 2>&1) ; then # Its Red Hat. # Not much to do here, just set X11_DEFS_DIR. X11_DEFS_DIR=/usr/share/X11/app-defaults # X11 app-defaults dir. else # Couldnt detect SuSE or Red Hat so give unsuppored message and quit. print "${ERR} Unrecognized or unsupported Linux." >&2 exit 1 fi PATH=.:/sbin:/usr/sbin:/usr/bin:/bin:/etc ; export PATH # Set the PATH UGS_TMP=/tmp/ugs_tmp # Define a stash area for old files. PS_CMD="ps -ef" # ps command for this system. DF_CMD="df -k" # df command for this system. AWK_CMD=awk # awk command for this system. TMP_DIR=/tmp # Tmp directory. LPATH_VAR_NAME=LD_LIBRARY_PATH # Library path var name. V160P14 alias -x pwd='pwd -L' # Tweak Linux pwd to give logical pwd. alias -x uncompress=gunzip # On SuSE 10 must use gunzip. NX050P24 As far as I understand, the script performs the compliance check of the distribution kit from the openSUSE family (correct me if I am mistaken). According to the directory structure, I do not seem to find any problems. As for the condition, I am not strong, and I ask for help in determining:
grep -i "SuSE " /proc/version 1>$NULL 2>&1 What would be the correct construction regarding the distribution of Debian 8.2?