Linux – How to install VMWare Tools in Linux

linuxterminalvmware

I'm using VMWare and a Linux Mint guest OS.

How can I install the VMWare Tools? The file is called vmware-install.pl

I've tried running this in the terminal, but it doesn't work.

sudo vmware-install.pl

I can't seem to remember what command I had to use. Thanks!

Best Answer

For future reference, the .pl extension is generally used for Perl scripts. Ensure the file is executable (chmod +x vmware-install.pl) then run ./vmware-install.pl or sudo vmware-install.pl if you are not in a privileged shell. If there is a properly written she-bang line it will run the script. If not, try sudo perl vmware-install.pl.

Related Question