Hi,
How to mount cdrom:
>mount /media/cdrom
or
Syntax:mount <device> <mount point>
>mount /dev/cdrom /root/xyz
or
1.Check where /media is present whether SATA or PATA,If SATA
If Hard disk is sda,sdb etc then
>ls /dev/sd*
/dev/sda /dev/sda1
else
>ls /dev/hd*
/dev/hdc
2.Lets assume it is /dev/hdc
If cdrom dir is not present then
>mkdir /media/cdrom
>mount /dev/hdc /media/cdrom
>cd /media/cdrom
>ls
You will be able to view all packages.Make a directory in any location and copy all packages there.
Yum Install
>cd /etc/yum.repos.d
>vim server.repo
(please type the following lines in this file)
[MyRepository]
name=repository
baseurl=http://server1.ex.com/pub/Server (please mention the path on the server where packages are kept)
enabled=1
gpgcheck=0
:wq(save file)
>yum clean all
>cd ~
>yum install <package name>
The above procedure should work
With Regards