I need help with using the VMware-vmrc script to connect to my ESXi server.
after 2 days of searching and googling I'M lost.
when running the script i get: "terminate called after throwing an instance of 'Glib::Error'"
What is that means & what can I do to fix it ?
little background, this script is part of the web interface for connecting to remote Vcenter and ESX VMware servers, you can find the program in github under /vmware/rvc/downloads.
Here is the Source of the file :
#!/bin/sh
#
# Wrapper for the real binary the script is named after. Ensure that the binary will find
# all the shared libraries it needs. If a shared library is not available from any
# of the standard system-wide locations, we provide it from the build
# directory.
#
# Use readlink only when necessary: some boxes don't have it, some boxes have
# one that does not support the -f option.
if [ -h "$0" ]; then
this="`readlink -f "$0"`"
else
this="$0"
fi
libdir_subdir=""
if [ "${libdir_subdir#@@}" = "VMWARE_LIBDIR_SUBDIR@@" ]; then
libdir_subdir='/libdir'
fi
libdir="`dirname "$this"`""$libdir_subdir"
exec 'lib/wrapper-gtk24.sh' 'lib/' 'bin/'`basename $this` \
'libconf/' "$@"
Any help will be appreciated