Originally posted by: tennesota
I downloaded RH 7.3 .iso files a few days ago from one of the mirror sites. Disk 1 & 3 created installation CD's with no problems, disk 2 however has been a puzzling challenge.
I made three attempts to create the disk 2 installation CD but each attempt has resulted in a CD with a burn of the .iso file. I downloaded .iso file #2 from a different mirror site and I am getting the same results...the .iso file is burned to the CD instead of creation of an installation CD.
Anyone else having this problem?
If you have a
loop device (i.e. /dev/loopX, where X is a number), try this for kicks (since everything seems to be fine).
At your C.L.I.:
-Go to your
/tmp directory and create a mount point (i.e. a directory to mount ). Let's call it
rhi2 for (
red
hat
iso #
2):
cd /tmp
mkdir rhi2
-As root, mount the iso image using the loop device:
mount -o loop -t iso9660 <location_or_the_iso_image> /tmp/rhi2
-If sucessful, go into /tmp/rhi2:
cd /tmp/rhi2
Now, Do you see any contents? You should see the contents of what the iso image has.
If the mounted /tmp/rhi2 shows an iso image, then that would be pretty funny because it meas R.H. created an iso of an iso of disk 2. Then, all you would have to do is copy the iso from the mounted /tmp/rhi2 somewhere else, and use it to create the cd.
If the mounted /tmp/rhi2 shows the contents to be installation directories, then there is something wrong with the iso image R.H. released. You can burn the contents of the cd straight from the mounted /tmp/rhi2, BUT you have to make sure you use the same cd-rom name the installer expects, else you run the chance of the installer not working during installation.
Try that, and let us know.
GL
P.S. Don't forget to unmount /tmp/rhi2 . .
/edit: Added
P.S.