44

I downloaded VMware Player 5.0.1, it comes in a file with .bundle extension. How do I install it?

jobin
  • 28,567
Anton Cherkashyn
  • 4,064
  • 3
  • 21
  • 18

2 Answers2

71

Open a terminal, cd to the directory where the file is and type

sudo sh *filename*.bundle
Seth
  • 59,332
Anton Cherkashyn
  • 4,064
  • 3
  • 21
  • 18
5

You can alternatively give execute privileges to the .bundle file. The execute it with root privileges.

chmod u+x filename.bundle
sudo ./filename.bundle
Anirudh
  • 176