Those who are still having the problem in ISO image file then you can use below patch for fix your problem.
Code:
diff -Nur anaconda-11.1.2.209.org/harddrive.py anaconda-11.1.2.209/harddrive.py
--- anaconda-11.1.2.209.org/harddrive.py 2011-01-25 11:24:54.436007993 +0530
+++ anaconda-11.1.2.209/harddrive.py 2011-01-29 22:44:11.744004997 +0530
@@ -58,8 +58,28 @@
retry = True
while retry:
try:
- isoImage = self.isoDir + '/' + self.path + '/' + self.discImages[cdNum]
-
+ try:
+ isoImage = self.isoDir + '/' + self.path + '/' + self.discImages[cdNum]
+ except:
+ #HACKXXX find iso from isoDir and set path to isoImage
+ isoImage = ""
+ files = os.listdir(self.isoDir + '/' + self.path + '/')
+ for file in files:
+ if not isys.isIsoImage(file):
+ continue
+ isoImage = self.isoDir + '/' + self.path + '/' + file
+ #If file mot found
+ if isoImage == "":
+ ans = self.messageWindow( _("Missing ISO 9660 Image"),
+ _("The installer has tried to mount "
+ "image #%s, but cannot find it on "
+ "the hard drive.\n\n"
+ "Please copy this image to the drive.")
+ % (cdNum,), type="custom",
+ custom_icon="warning",
+ custom_buttons=[_("_Reboot")])
+ sys.exit(0)
+
isys.makeDevInode("loop3", "/tmp/loop3")
isys.losetup("/tmp/loop3", isoImage, readOnly = 1)
Bookmarks