LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-21-2005, 11:03 PM   #1
towsonu2003
Member
 
Registered: May 2005
Distribution: Ubuntu 6.06
Posts: 129

Rep: Reputation: 15
kde kicker crash while exiting kde but why?


I'm a newbie, just installed slackware 10.2. For some reason, kicker crashes everytime I exit kde and X hangs. sometimes ctrl+alt+backspace doesnot work to kill it.
I have the crash report attached, but I have no idea what it's saying. I would appreciate any help,,,
Kicker crash report (appears right before X hangs when log out):

(no debugging symbols found)
Using host libthread_db library "/lib/tls/libthread_db.so.1".
(no debugging symbols found)
(...repeats...)
[Thread debugging using libthread_db enabled]
[New Thread -1231239488 (LWP 5122)]
(no debugging symbols found)
(...repeats...)
[KCrash handler]
#3 0xb7478ad8 in QGList::find () from /usr/lib/qt/lib/libqt-mt.so.3
#4 0xb784455e in KGlobal::registerStaticDeleter ()
from /opt/kde/lib/libkdecore.so.4
#5 0xb7dcb3dc in KDirWatch::self () from /opt/kde/lib/libkio.so.4
#6 0xb7e1c3d3 in KDirListerCache::KDirListerCache ()
from /opt/kde/lib/libkio.so.4
#7 0xb7e20317 in KDirListerCache::self () from /opt/kde/lib/libkio.so.4
#8 0xb7e24f39 in KDirLister::stop () from /opt/kde/lib/libkio.so.4
#9 0xb7e24a60 in KDirLister::~KDirLister () from /opt/kde/lib/libkio.so.4
#10 0xb650fe33 in SystemMenu::~SystemMenu ()
from /opt/kde/lib/kde3/kickermenu_systemmenu.so
#11 0xb7b869ae in QPtrList<QObject>::deleteItem ()
from /opt/kde/lib/libkdeui.so.4
#12 0xb7478a3e in QGList::clear () from /usr/lib/qt/lib/libqt-mt.so.3
#13 0xb784f3d3 in KLibrary::~KLibrary () from /opt/kde/lib/libkdecore.so.4
#14 0xb78510b6 in KLibLoader::close_pending ()
from /opt/kde/lib/libkdecore.so.4
#15 0xb78504ea in KLibLoader::~KLibLoader () from /opt/kde/lib/libkdecore.so.4
#16 0xb784ff38 in KLibLoader::cleanUp () from /opt/kde/lib/libkdecore.so.4
#17 0xb779cb73 in KApplication::~KApplication ()
from /opt/kde/lib/libkdecore.so.4
#18 0xb7854c47 in KUniqueApplication::~KUniqueApplication ()
from /opt/kde/lib/libkdecore.so.4
#19 0xb6883b59 in Kicker::~Kicker () from /opt/kde/lib/libkdeinit_kicker.so
#20 0xb68819b3 in kdemain () from /opt/kde/lib/libkdeinit_kicker.so
#21 0xb76a67d6 in kdeinitmain () from /opt/kde/lib/kde3/kicker.so
#22 0x0804ce12 in ?? ()
(...repeats various numbers...)
#55 0xb75ffcc0 in vtable for QGArray () from /usr/lib/qt/lib/libqt-mt.so.3
(...repeats various numbers...)
#68 0xb6a875f4 in _int_malloc () from /lib/tls/libc.so.6
#69 0x0804e33b in ?? ()
(...repeats various numbers...)
#79 0x080506b7 in _IO_stdin_used ()
(...repeats various numbers...)
#83 0x080506b7 in _IO_stdin_used ()
(...repeats various numbers...)
#98 0x08052658 in vtable for QCString ()
(...repeats various numbers...)
#102 0x08052658 in vtable for QCString ()
(...repeats various numbers...)
#121 0xb6bfb48d in operator delete () from /usr/lib/./libstdc++.so.5
---end---

Also, after deleting the System menu from the panel and from the desktop, crashes became less frequent (every 6-8 logout).

Last edited by towsonu2003; 09-26-2005 at 05:36 PM.
 
Old 09-26-2005, 04:50 PM   #2
archtoad6
Senior Member
 
Registered: Oct 2004
Location: Houston, TX (usa)
Distribution: MEPIS, Debian, Knoppix,
Posts: 4,727
Blog Entries: 15

Rep: Reputation: 234Reputation: 234Reputation: 234
Use 'uniq' to shorten dumps

I think one of the reasons no one has replied in about 5 days, is that your Kicker crash report is excessively long.

Just for the CLI/scripting practice, I put your crash report into 2 files, 1.txt & 2.txt. 1.txt contains the part with no line #'s, 2.txt the portion where the lines are numbered. Here is the use of 'uniq' to eliminate the duplicates, while counting the repetitions:
Code:
uniq -c   1.txt 
uniq -cf1 2.txt  | less
I wanted to get really cute, so I added an 'awk' to the 2nd to align the line #'s:
Code:
uniq -cf1 2.txt  | awk '{printf   \
"%3i   %4s %s %s %s %s %s %s\n",  \
$1, $2 , $3, $4, $5, $6, $7, $8}'  | less
Finally, here are 2 commands to demonstrate the savings:
Code:
uniq -c   1.txt  | wc;   cat 1.txt  | wc
uniq -cf1 2.txt  | wc;   cat 2.txt  | wc
Maybe if you would edit your post to eliminate the duplicate lines (I've given you a way to do it painlessly) someone would be willing to wade through it & advise you.
 
Old 09-26-2005, 05:31 PM   #3
towsonu2003
Member
 
Registered: May 2005
Distribution: Ubuntu 6.06
Posts: 129

Original Poster
Rep: Reputation: 15
I'll try to shorten the post. Thank you for your advice. As for the script, that's just too much for me for now
kicker issue still unresolved
thanks

Last edited by towsonu2003; 09-26-2005 at 05:36 PM.
 
Old 09-27-2005, 06:20 AM   #4
koyi
Member
 
Registered: Jul 2003
Location: Osaka, Japan
Distribution: Arch, Ubuntu
Posts: 421

Rep: Reputation: 31
Having the same problem over here.
But luckily it doesn't hang my X, I just need to click on "OK" at the crash report and then I can log out like normal.
But it is rather irritating to have a crash report on almost every logout...

Does anyone know the reason?
 
Old 10-01-2005, 09:31 PM   #5
Erik_FL
Member
 
Registered: Sep 2005
Location: Boynton Beach, FL
Distribution: Slackware
Posts: 821

Rep: Reputation: 258Reputation: 258Reputation: 258
I'm having the same problem. About 1 out of 5 times when I log out I get the crash, and if I click OK, everything seems normal. I've had a few other crashes in KDE, but those are very infrequent. Hopefully someone will find a solution to the problem.
 
Old 10-03-2005, 12:31 PM   #6
towsonu2003
Member
 
Registered: May 2005
Distribution: Ubuntu 6.06
Posts: 129

Original Poster
Rep: Reputation: 15
This seems to be a KDE bug. KDE people told me to remove the System menu from the panel. I removed that and the System link from my desktop. Now the crashes are much less frequent, but still happening.
 
Old 10-04-2005, 10:08 PM   #7
mneedes
LQ Newbie
 
Registered: Oct 2005
Distribution: Fedora Core 3
Posts: 1

Rep: Reputation: 0
I have the same problem,

but check out bug 109648 in

http://bugs.kde.org/simple_search.cgi?id=kicker+crash

Looks like it will be resolved in the next minor release...
 
  


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
How to add Gnome style "drawer" (ie sub-menu) to KDE 3.1 kicker (aka KDE Panel) quaestor Linux - Software 7 10-17-2006 09:55 AM
Disable kicker in kde rejser Linux - Software 2 08-31-2004 02:04 PM
KDE crash handler when exiting programs Klas Mandriva 9 08-29-2004 11:03 PM
KDE Kicker Applets davecs LinuxQuestions.org Member Success Stories 0 07-16-2003 05:21 PM
Kicker won't load in KDE MissBlondie Linux - General 7 11-15-2002 03:12 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:06 AM.

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