apt-get install build-essential linux-headers-$(uname -r) psmisc gcc binutils make wget apt-get install libgtk2.0-dev
./configure --without-x --without-dnet --without-icu --without-gtk2 --without-gtkmm && make clean && make make install
/usr/local/sbin/vmware-guestd --background /var/run/vmware-guestd.pid
nebo startovací skript
#!/bin/sh ## BIN=/usr/local/sbin/vmware-guestd ## case "$1" in start) echo -n "Starting VMtools: " PID=`pidof $BIN` if [ "$PID" ] ; then echo ".... is running" exit fi $BIN --background /var/run/vmware-guestd.pid PID=`cat /var/run/vmware-guestd.pid` if [ "$PID" ] ; then echo "OK" else echo "not started..." fi ;; stop) echo -n "Stopping VMtools: " PID=`pidof $BIN` if [ "$PID" ] ; then kill $PID echo "killing...." else echo "... not running?" fi ;; esac
vmblock vmhgfs vmmemctl vmsync vmxnet vmci vsock