turbotiga
Contributor
Contributor

Hi Mike,

thanx for the quick feedback. I created the directory by hand and run the script again which then works (at least ESX Server says, VMWare Tools are ok).

But this doesnt answer my question. This is a server, there is no X installed, so /usr/dt/... is not existing (grep /usr/dt /var/sadm/install/contents).

I don't understand why the config.pl tries to copy the file, when it has already detected, there is no X.

$result = configure_X();

$gFeatureInstallResults[$cFeatureInstallIDs{'xserver'}] =

$result eq 'no' ? $cFeatureInstallFailed : $cFeatureInstalled;

... instead of ... cannot work

if (vmware_product() eq 'tools-for-linux' ||

vmware_product() eq 'tools-for-solaris') {

configure_autostart();

}

should'nt it do something like

if ($result eq 'yes' && (vmware_product() eq 'tools-for-linux' ||

vmware_product() eq 'tools-for-solaris')) {

configure_autostart();

}

kind regards, thomas

Reply
0 Kudos