LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices


Reply
  Search this Thread
Old 12-19-2009, 09:24 AM   #1
mickeyboa
Senior Member
 
Registered: May 2004
Location: Indianapolis, Indiana
Distribution: FC-KDE, 32 and 64 bit
Posts: 1,719

Rep: Reputation: 68
Yumex crashes after startup


FC12/KDE

Yumex crashes just after starting, it checks package repos then crashes,
A attachment is attached showing yumex start from command line ,and output to /var/log/messages.


yumex

$ yumex
\running
Current Settings
autorefresh: True
branding_title: 'Yum Extender NextGen'
color_install: 'darkgreen'
color_normal: 'black'
color_obsolete: 'blue'
color_update: 'red'
debug: False
disable_repo_page: False
plugins: True
proxy: ''
recentdays: 14
repo_exclude: ['debug', 'source']
win_height: 550
win_sep: 300
win_width: 800
yumdebuglevel: 2
/usr/lib/python2.6/site-packages/guihelpers/__init__.py:199: GtkWarning: gtk_scrolled_window_add(): cannot add non scrollable widget use gtk_scrolled_window_add_with_viewport() instead
self.add_from_file(filename)
eth0 (r8169) is connected
/usr/lib/python2.6/site-packages/yumexgui/gui.py:179: DeprecationWarning: Use the new widget gtk.Tooltip
self.tooltip = gtk.Tooltips()
/usr/lib/python2.6/site-packages/yumexgui/gui.py:206: DeprecationWarning: Use the new widget gtk.Tooltip
self.tooltip.set_tip(button, tooltip)
eth0 (r8169) is connected
Connected to an network
eth0 (r8169) is connected
Starting yum child process
YUM: Loaded plugins: auto-update-debuginfo, presto
YUM: Found 26 installed debuginfo package(s)
YUM: Enabling fedora-debuginfo: Fedora 12 - i386 - Debug
YUM: Enabling rpmfusion-nonfree-debuginfo: RPM Fusion for Fedora 12 - Nonfree - Debug
YUM: Enabling updates-debuginfo: Fedora 12 - i386 - Updates - Debug
YUM: Enabling rpmfusion-free-updates-debuginfo: RPM Fusion for Fedora 12 - Free - Updates Debug
YUM: Enabling rpmfusion-free-debuginfo: RPM Fusion for Fedora 12 - Free - Debug
YUM: Enabling rpmfusion-nonfree-updates-debuginfo: RPM Fusion for Fedora 12 - Nonfree - Updates Debug
History Enabled
/usr/bin/yumex: line 5: 2712 Segmentation fault (core dumped) /usr/bin/python /usr/share/yumex/yumex.pyc $*



/var/log/message

Dec 18 20:54:38 localhost kernel: python[2767]: segfault at bee85ffc ip 004021ad sp bee86000 error 6 in libgdk-x11-2.0.so.0.1800.5[3ce000+b2000]
Dec 18 20:54:38 localhost abrtd: Directory 'ccpp-1261187678-2767' creation detected
Dec 18 20:54:38 localhost abrtd: Lock file '/var/cache/abrt/ccpp-1261187678-2767.lock' is locked by process 2778
Dec 18 20:54:38 localhost abrt: saved core dump of pid 2767 to /var/cache/abrt/ccpp-1261187678-2767/coredump (54022144 bytes)
Dec 18 20:54:38 localhost abrtd: Getting local universal unique identification...
Dec 18 20:54:38 localhost abrtd: Crash is in database already
Dec 18 20:54:38 localhost abrtd: Already saved crash, just sending dbus signal
 
Old 12-20-2009, 12:06 PM   #2
PTrenholme
Senior Member
 
Registered: Dec 2004
Location: Olympia, WA, USA
Distribution: Fedora, (K)Ubuntu
Posts: 4,187

Rep: Reputation: 354Reputation: 354Reputation: 354Reputation: 354
Do you get the same error if you run the Python source code? (I.e.: Try running /usr/share/yumex/yumex.py instead of /usr/bin/yumex)

When's the last time you ran a fsck? (Do a sudo touch /forcefsck and reboot to force fsck to run. The reboot is needed since fsck can't work on mounted file systems.) The seg. fault problem sometimes results from a drive error reading a block as all zeros.

Code:
$ /usr/share/yumex/yumex.py
running                                      
Current Settings                             
    autorefresh: True                        
    branding_title: 'Yum Extender NextGen'   
    color_install: 'darkgreen'               
    color_normal: 'black'                    
    color_obsolete: 'blue'                   
    color_update: 'red'                      
    debug: False                             
    disable_repo_page: False                 
    plugins: True                            
    proxy: ''                                
    recentdays: 14                           
    repo_exclude: ['debug', 'source']        
    win_height: 840                          
    win_sep: 300                             
    win_width: 1330                          
    yumdebuglevel: 2                         
/usr/lib/python2.6/site-packages/guihelpers/__init__.py:199: GtkWarning: gtk_scrolled_window_add(): cannot add non scrollable widget use gtk_scrolled_window_add_with_viewport() instead  
  self.add_from_file(filename)                                                               
/usr/lib/python2.6/site-packages/yumexgui/gui.py:179: DeprecationWarning: Use the new widget gtk.Tooltip                                                                                  
  self.tooltip = gtk.Tooltips()
/usr/lib/python2.6/site-packages/yumexgui/gui.py:206: DeprecationWarning: Use the new widget gtk.Tooltip
  self.tooltip.set_tip(button, tooltip)
Can't detect the network connection state
Starting yum child process
YUM: Loaded plugins: auto-update-debuginfo, fastestmirror, presto, upgrade-helper
YUM: Loading mirror speeds from cached hostfile
Downloaded : updates/metalink ( 15 k )
YUM:  * fedora: mirrors.dmacc.net
YUM:  * rpmfusion-free: mirror.web-ster.com
YUM:  * rpmfusion-free-updates: mirror.web-ster.com
YUM:  * rpmfusion-nonfree: mirror.web-ster.com
YUM:  * rpmfusion-nonfree-updates: mirror.web-ster.com
YUM:  * updates: mirrors.dmacc.net
Downloaded : repomdgfqGS3tmp.xml ( 951  )
Downloaded : repomdKy0IhBtmp.xml ( 3.3 k )
Downloaded : repomdWuQqectmp.xml ( 3.3 k )
YUM: Checking for new repos for mirrors
History Enabled
Stopping yum child process
Closing rpm db and releasing yum lock
 
Old 12-20-2009, 05:43 PM   #3
mickeyboa
Senior Member
 
Registered: May 2004
Location: Indianapolis, Indiana
Distribution: FC-KDE, 32 and 64 bit
Posts: 1,719

Original Poster
Rep: Reputation: 68
Found problem it was the rpm gtk2-immodule-xim that was causing the yumex crash.

Uninstalled gtk2-immodule-xim and it solved the problem, Yumex is back to it's old self again.
Thanks for your responds

Here is the bug report on it.

https://bugzilla.redhat.com/show_bug.cgi?id=548827
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Yumex crashes, Error value:No id element found, fedora core 9 tunez Linux - Software 6 11-20-2008 10:41 AM
X crashes on startup natrius Linux - Software 2 01-02-2004 01:25 PM
xmule crashes on startup bshelton Linux - Software 3 11-16-2003 01:56 AM
Mozilla crashes on startup pmcmorri Linux - Software 6 07-31-2003 09:14 AM
xserver crashes at startup -=bcc=-E-nigma Linux - Hardware 1 04-27-2003 07:54 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora

All times are GMT -5. The time now is 08:41 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration