Most probably if you were trying to install the latest (6.5.3) version of VMware workstation on Fedora 11 you’ve got troubles – like me. I finally (by chance) found a workaround, not a solution, to the problem.
As the installer fails during the modules compilation/installation, the only thing that you need to do is:
- remove the gcc package – that way effectively disabling the installer from trying to install/compile modules
Edir (Thanks to Gerard Braad – see comments bellow): alternatively you can only move the gcc binary, so that the installer would not find it:
mv $(which gcc) $(which gcc).disabled
- install VMware-Workstation package – bare in mind that you’ll need at least 1.2GB of free space on your root volume, during that operation
- reinstall back gcc ( and kernel-devel if you don’t have it) or (see above) move back the gcc binary
mv $(which gcc.disabled) $(echo $(which gcc.disabled) | sed ‘s/\.disabled$//’)
- run VMware Workstation and let it compile/install the new modules
That’s all
