VMware Communities
u03pje
Contributor
Contributor
Jump to solution

Installing VM Player using script in Linux

Has anyone installed VM Player automatically using a script in Linux before? If so, how?

0 Kudos
1 Solution

Accepted Solutions
kissanej
Enthusiast
Enthusiast
Jump to solution

0 Kudos
5 Replies
andrew204
Contributor
Contributor
Jump to solution

Not sure what you mwan by installing by script, but "sudo VMware-Player-3.0.0-203739.i386.bundle" is all it took for me. It de-installs the existing software and installs the new one.

0 Kudos
u03pje
Contributor
Contributor
Jump to solution

I am trying to deploy a standard Linux image to a number of PCs, and I want VM Player to be installed as part of that. Linux can be installed using the kickstart, I'm wondering if I can install VM Player in the POST section of the kickstart, rather than installing on an individual basis?

0 Kudos
kissanej
Enthusiast
Enthusiast
Jump to solution

These are the two lines from my kickstart script that installs VMPlayer 3.0 under Fedora 12.

echo "Installing VMWare Player ..."

sh <long path snipped>/VMware-Player-3.0.0-203739.x86_64.bundle --required

echo "Renaming VMware mozilla-root-certs (needed until updated player available)"

mv /usr/lib/vmware/resources/mozilla-root-certs.crt /usr/lib/vmware/resources/mozilla-root-certs.crt.old

u03pje
Contributor
Contributor
Jump to solution

Cheers kissanej,

I presume the addition of these two lines will result in no user interaction with the install process?

0 Kudos
kissanej
Enthusiast
Enthusiast
Jump to solution

Exactly that!

0 Kudos