How to get VMware Remote Console on Kali 2019.4

Thanx to

http://computersalad.blogspot.com/2018/09/using-vmware-remote-console-on-debian.html

sudo su
cd /usr/lib/vmware/bin
mv vmrc vmrc.old

Create a new vmrc file in /usr/lib/vmware/bin with this content

#!/bin/bash
LIBDIR="/usr/lib/vmware/lib"
BINDIR="/usr/lib/vmware/bin"
LD_LIBRARY_PATH=""
for dir in $(find ${LIBDIR} -type d) ; do
LD_LIBRARY_PATH="${dir}:${LD_LIBRARY_PATH}"
done
export LD_LIBRARY_PATH
ln -s ${BINDIR}/appLoader /tmp/vmrc
/tmp/vmrc $*
rm -f /tmp/vmrc
exit 0

One thought on “How to get VMware Remote Console on Kali 2019.4

Add yours

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Blog at WordPress.com.

Up ↑