Group menebers!!!! Help!!!
I got following error while customizing the Red Hat9.0 installer for my company,
Traceback (most recent call last): File "/usr/lib/anaconda/gui.py", line 936, in handleRenderCallback self.currentWindow.renderCallback() File "/usr/lib/anaconda/iw/progress_gui.py", line 155, in renderCallback self.intf.icw.nextClicked() File "/usr/lib/anaconda/gui.py", line 761, in nextClicked self.dispatch.gotoNext() File "/usr/lib/anaconda/dispatch.py", line 157, in gotoNext self.moveStep() File "/usr/lib/anaconda/dispatch.py", line 225, in moveStep rc = apply(func, self.bindArgs(args)) File "/usr/lib/anaconda/packages.py", line 817, in doInstall problems = ts.run(cb.cb, 0) File "/usr/lib/anaconda/packages.py", line 308, in cb self.progress.setPackage(h) File "/usr/lib/anaconda/iw/progress_gui.py", line 133, in setPackage self.adbox.show_all() AttributeError: InstallProgressWindow instance has no attribute 'adbox'
Also the install.log was like follow.
* mounting filesystems * going to mount /tmp/hda7 on /mnt/sysimage * going to mount /tmp/hda2 on /mnt/sysimage/boot * going to mount none on /mnt/sysimage/dev/pts * going to mount /tmp/hda5 on /mnt/sysimage/home * going to mount none on /mnt/sysimage/proc * moving (1) to step migratefilesystems * moving (1) to step setuptime * unable to set timezone * moving (1) to step preinstallconfig * moving (1) to step installpackages * unable to load rnotes/01-rhl9-instart-hasitall.png * couldn't get a pix * going to mount /tmp/fd0 on /tmp/crash
Also her i am attching the anaconda dump if anyone wants to refer it.
Please help me soon as possible.
________________________________________________________________________ Yahoo! India Matrimony: Find your partner online. http://yahoo.shaadi.com/india-matrimony/
On Tue, 2004-04-27 at 09:35, Pathik Patel wrote:
I got following error while customizing the Red Hat9.0 installer for my company,
Traceback (most recent call last): File "/usr/lib/anaconda/gui.py", line 936, in handleRenderCallback self.currentWindow.renderCallback() File "/usr/lib/anaconda/iw/progress_gui.py", line 155, in renderCallback self.intf.icw.nextClicked() File "/usr/lib/anaconda/gui.py", line 761, in nextClicked self.dispatch.gotoNext() File "/usr/lib/anaconda/dispatch.py", line 157, in gotoNext self.moveStep() File "/usr/lib/anaconda/dispatch.py", line 225, in moveStep rc = apply(func, self.bindArgs(args)) File "/usr/lib/anaconda/packages.py", line 817, in doInstall problems = ts.run(cb.cb, 0) File "/usr/lib/anaconda/packages.py", line 308, in cb self.progress.setPackage(h) File "/usr/lib/anaconda/iw/progress_gui.py", line 133, in setPackage self.adbox.show_all() AttributeError: InstallProgressWindow instance has no attribute 'adbox'
- couldn't get a pix
Where exactly did this error occur? Did you take a look at the code on line 133 of "/usr/lib/anaconda/iw/progress_gui.py"?
It looks like it is trying this: pix = self.ics.readPixmapDithered (self.pixmaps[num], 425, 225) but not finding it. What did you add/remove from your customized distribution?
Forrest
On Tue, 27 Apr 2004 17:35:40 +0100 (BST) Pathik Patel [Pathik] wrote:
Pathik> I got following error while customizing the Red Hat9.0 Pathik> installer for my company, Pathik> Pathik> Traceback (most recent call last): Pathik> File "/usr/lib/anaconda/gui.py", line 936, in Pathik> handleRenderCallback [...] Pathik> self.progress.setPackage(h) Pathik> File "/usr/lib/anaconda/iw/progress_gui.py", line Pathik> 133, in setPackage Pathik> self.adbox.show_all() Pathik> AttributeError: InstallProgressWindow instance has no Pathik> attribute 'adbox' [...] Pathik> Also the install.log was like follow. Pathik> Pathik> * mounting filesystems [...] Pathik> * unable to load rnotes/01-rhl9-instart-hasitall.png Pathik> * couldn't get a pix Pathik> * going to mount /tmp/fd0 on /tmp/crash
look like you miss the pictures shown during installation (anaconda-images package).
progress_gui.py:
num = self.pixcurnum if num >= len(self.pixmaps): num = 0 pix = self.ics.readPixmapDithered (self.pixmaps[num], 425, 225) if pix: if self.adpix: self.adbox.remove (self.adpix) pix.set_alignment (0.5, 0.5) self.adbox.add (pix) self.adpix = pix else: log("couldn't get a pix") self.adbox.show_all() self.pixcurnum = num + 1 self.pixtimer.reset()
maybe these 3 last lines should be included in the first part of the 'if pix' to avoid this problem. installation should not abort in case of missing pictures ;-).
On Wed, 28 Apr 2004 15:16:15 +0100 (BST) Pathik Patel [Pathik] wrote:
Pathik> I have tried to looking at the source code but it loads some dithered picture then Pathik> i traced that. I found that it was trying for first pic file in /rnotes directory.
is that /rnotes or /usr/share/anaconda/pixmaps/rnotes/ ?
Pathik> At that place i have proviced my own pic file. So is it problem???
no, for sure
Pathik> I have replaced my pic file with original files's attributes as is like pixe by Pathik> pixel value, png format etc. Pathik> Pathik> Also in the log it shows that it can not load the first image from the rnotes Pathik> directory but i havechecked in to stage2.img image file in rnotes are at right place Pathik> but why this happens???? i can't understand. Pathik>
how did you do build your stage2.img ? manually or update anaconda-images + buildinstall ?
and please: - do not post in HTML - keep posting in the thread you've created for this problem
anaconda-devel@lists.fedoraproject.org