I try install SME 9.1 on esxi 6.server.
Hi Fumetto, thank you for your post
No wiki info so think this is the right procedure. Can anyone confirm this?
well, ask for a wiki account and create it yourself

Install repo key
rpm --import http://packages.vmware.com/tools/keys/VMWARE-PACKAGING-GPG-RSA-KEY.pub
Create yum repo
db yum_repositories set vmware-tools repository \
Name 'VMWare Tools' \
BaseURL 'http://packages.vmware.com/tools/esx/6.0u2/rhel6/$basearch' \
EnableGroups no \
GPGCheck yes \
GPGKey http://packages.vmware.com/tools/keys/VMWARE-PACKAGING-GPG-DSA-KEY.pub \
Visible no \
status disabled
since here, it seems ok to me
Update yum.conf
expand-template /etc/yum.smerepos.d/sme-base.repo
not necessary
you'd call the yum-update event
signal-event yum-update
(see in the wiki other repos pages for examples)
check for PAE vs non-PAE kernel
uname -r
Install NON-PAE tools if "PAE" is not contained in the output from "uname -a"
uname -a |grep PAE || yum --enablerepo=vmware-tools install vmware-tools-esx-kmods vmware-tools-esx-nox
Install PAE tools if "PAE" is contained in the output from "uname -a"
uname -a |grep PAE && yum --enablerepo=vmware-tools install vmware-tools-esx-kmods-PAE vmware-tools-esx-nox
is there any possibility to install the right package without specifying the pae stuff?
did you follow any centos' related howto?
Verify tools are running with
/etc/vmware-tools/init/vmware-tools-services status
how do you start vmware services?
Can use this baserepo line?
BaseURL 'http://packages.vmware.com/tools/esx/latest/rhel6/$basearch' \
if your repo, with this line, works, I'd say yes

unfortunately I have no ESX6 to test.. BTW, I remember that in some external repo (epel, IIRC) there are OOSS vmtools... wolud you mind to check and report here and in the new wiki page?
thank you