I downloaded VMware Player 5.0.1, it comes in a file with .bundle extension. How do I install it?
Asked
Active
Viewed 1e+01k times
44
jobin
- 28,567
Anton Cherkashyn
- 4,064
- 3
- 21
- 18
2 Answers
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
Alpha Omega
- 23
Anirudh
- 176