Centos man section 2

Hello guys, I installed Centos 6.2 minimal. I also installed gcc and g++. I know that it should come with system calls library it's installed and I saw the header files in /usr The problem that I have now is man 2 doesn't work and give me the following error message "No manual entry for read in section 2"
thanks in advance

You might need to update your man db.

See mandb.

command not found
The man path

/usr/local/share/man:/usr/share/man/en:/usr/share/man

A "minimal" installation of CentOS 6.2 doesn't even install man itself. Did you install that manually?

yum install man

The man-pages package installs a bunch of man pages:

# man -s2 bind
No manual entry for bind

# yum install man-pages
�

# man -s2 bind
BIND(2)                                         Linux Programmer's Manual                                BIND(2)
...