same problems found with
Distributor ID: Ubuntu
Description: Ubuntu 17.10
Release: 17.10
Codename: artful
please help
tks
Was the solution on installing libgnome-keyring helpful?
I added lines to PulseClient_x86_64.sh to solve a similar problem in Mint 18.3 with 5.3 R3:
OSNAME=$(lsb_release -d | grep -o "Ubuntu") + OSNAME=$(lsb_release -d | grep -o "Mint") if [ "X$OSNAME" != "X" ]; then UBUNTU_VER=$(lsb_release -d | grep -o '.[0-9]*\.'| head -1|sed -e 's/\s*//'|sed -e 's/\.//') + MINT_VER=$(lsb_release -d | grep -o '.[0-9]*\.'| head -1|sed -e 's/\s*//'|sed -e 's/\.//') if [ $UBUNTU_VER = 14 ]; then OS_TYPE=${SUPPORTED_OSTYPES_LIST[$UBUNTU_14]} elif [ $UBUNTU_VER = 15 ]; then OS_TYPE=${SUPPORTED_OSTYPES_LIST[$UBUNTU_15]} elif [ $UBUNTU_VER = 16 ]; then OS_TYPE=${SUPPORTED_OSTYPES_LIST[$UBUNTU_16]} + elif [ $MINT_VER = 18 ]; then + OS_TYPE=${SUPPORTED_OSTYPES_LIST[$UBUNTU_16]} else OS_TYPE=${SUPPORTED_OSTYPES_LIST[$UNSUPPORTED]} fi
I found this way to install Pulse Secure on Mint 18.x:
# Login as su
sudo su
# Change lsb_release to Ubuntu version
export LSB_ETC_LSB_RELEASE=/etc/upstream-release/lsb-release
# Install Pulse Secure
dpkg -i pulsexxx.deb