Instalar VMware Remote Console 10.0.6 en Debian Buster

Para instalar la consola remota de vmware en Debian Buster lo realizamos de la siguiente manera:
1. descargamos el software para Linux y luego lo ejecutamos  desde una consola de la siguiente manera:

sudo ./VMware-Remote-Console-10.0.6-14247266.x86_64.bundle

2. Modificamos el siguiente script  /usr/bin/vmrc, nos deberá quedar de la siguiente forma:


#!/usr/bin/env bash
#
# Copyright 2005-2008 VMware, Inc.  All rights reserved.
#
# Wrapper for a binary. 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
# location where the VMware software is installed.
#
# The binary must have the same name in BINDIR as it does in LIBDIR/bin.
#

set -e

ROOT_REQUIRED=no

ETCDIR=/etc/vmware
. $ETCDIR/bootstrap

export PRODUCT_NAME="VMware Remote Console"
libdir="$LIBDIR"/vmware

uid=`id -u` || exit 1

LIBPATHS="$(cd $libdir/lib ; for i in */; do echo -n $(pwd)/${i%/}:; done)"

if [ "$ROOT_REQUIRED" = "yes" -a $uid -ne 0 ]; then
   "$BINDIR"/vmware-gksu "$0" "$@"
else
   binary="`basename "$0"`"
#   exec "$libdir"/bin/"$binary" "$@"
   LD_LIBRARY_PATH="$LIBPATHS" exec "$libdir"/bin/"$binary" "$@"
fi

exit 1



Espero les sirva saludos y bendiciones
Fuente: https://communities.vmware.com/thread/596079

Comentarios