Installing rpm in centos 6

hi,

i am try to install a package in centos 6.2 x86-64 but unable to find any package in centos media iso.
In RHEL we have a product folder which contain all the list of rpm but in centos i cant found that.
I have use yum command but it also cant work show me the message no module named yum.

Thanks

In CentOS 6 DVD (there are 2 DVDs), you will find Packages directory which contains the rpm files.

If your system does not have yum installed by default (which is weird), you have to go through the pain of installing it using the rpm command (don't tell me that too does not work!) after installing all dependencies.

Once you have yum, you can use your DVDs as the local yum repository by adding a file named local.repo (or any name with the .repo extension) in /etc/yum.repos.d/ directory with the following contents:

[Local]
name=Local Repository
baseurl=file:///misc/cd/Packages
enabled=1
gpgcheck=0

...and you can install the packages using yum now.