No Red Hat 5 e no CentOS 5, você precisa instalar o VMware Tools, porque os módulos vmware não incluem o kernel da linha principal.
Por exemplo, no SUSE 11 Sp1 com kernel 2.6.32.59-0.7-default
:
grep -i vmxnet3 /boot/config-2.6.32.59-0.7-default
CONFIG_VMXNET3=m
como você pode ver o módulo está integrado no kernel como módulo externo, de qualquer forma você pode fazer um teste como este:
modprobe -q vmxnet3 && echo "vmxnet3 installed" || echo "vmxnet3 not installed"
man modprobe:
RETURN VALUE
modprobe returns 0 on success, 1 on an unspecified error and 2 if the module is not supported. Use the --allow-unsupported-modules option to force using an unsup-
ported module.