Last active
April 7, 2022 06:00
-
-
Save mcindea/dee9098fb9c666d43237ed141c5109d2 to your computer and use it in GitHub Desktop.
Vmware tools fixer when
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Vmware tools fixer | |
# When vmware tools refuse to start | |
vmware-guestproxycerttool -g -f&& | |
/usr/bin/vmware-config-tools.pl -d&& | |
/etc/vmware-tools/services.sh restart | |
# Fix automated tools install | |
mkdir /p /media/cdrom && | |
mount /dev/cdrom /media/cdrom && | |
cp /media/cdrom/VM* /var/tmp && | |
cd /var/tmp && | |
tar -zxvf VM* && | |
cd vmware-tools-distrib && | |
./vmware-install.pl -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment