[KDE4] libkio undefined symbol [workaround-fix] - Debian
This is a discussion on [KDE4] libkio undefined symbol [workaround-fix] - Debian ; Ola. This is my first post and what brought me here was an error I was getting when trying to launch KDE4 installed from the packages in the experimental repository. The error was (from ~/.xsession-errors): -- startkde: Starting up... kdeinit4: ...
| | LinkBack | Tools |
|
#1
| |||
| |||
| This is my first post and what brought me here was an error I was getting when trying to launch KDE4 installed from the packages in the experimental repository. The error was (from ~/.xsession-errors): -- startkde: Starting up... kdeinit4: symbol lookup error: /usr/lib/libkio.so.5: undefined symbol: _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_ startkde: Could not start kdeinit4. Check your installation. -- I searched here for it, but no one seemed to have the same problem. So I went further to find my way through it alone and I found, at first, that /usr/lib/libkio.so.5 actually _has_ the supposedly missing symbol: -- nm -D /usr/lib/libkio.so.5 | grep _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_ U _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_ -- So I thought could be any library dynamic loading issue, then I found that the startup script 'startkde' set the env variable LD_BIND_NOW. I just removed it from the script, by changing the line above: -- LD_BIND_NOW=true kdeinit4 +kcminit_startup -- to this: -- kdeinit4 +kcminit_startup -- and KDE started fine with a few errors when shutting down (that I cannot be sure if are colateral effects of what I did, but I'm almost sure not). I'm posting this here to help anyone having the same trouble, and maybe someone who is in more touch with KDE4 development than me to analyze this. Regards, Kiyoshi. -- To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
#2
| |||
| |||
| What version of libstreamanalyzer* and libstrigi* are you using ? Try upgrading them. Ritesh Kiyoshi Murata wrote: > Ola. > > This is my first post and what brought me here was an error I was > getting when trying to launch KDE4 installed from the packages in the > experimental repository. > > The error was (from ~/.xsession-errors): > > -- > startkde: Starting up... > kdeinit4: symbol lookup error: /usr/lib/libkio.so.5: undefined symbol: > _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_ > startkde: Could not start kdeinit4. Check your installation. > -- > > I searched here for it, but no one seemed to have the same problem. > So I went further to find my way through it alone and I found, at > first, that /usr/lib/libkio.so.5 actually _has_ the supposedly missing > symbol: > > -- > nm -D /usr/lib/libkio.so.5 | grep > _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_ > U > _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_ > -- > > So I thought could be any library dynamic loading issue, then I found > that the startup script 'startkde' set the env variable LD_BIND_NOW. I > just removed it from the script, by changing the line above: > > -- > LD_BIND_NOW=true kdeinit4 +kcminit_startup > -- > > to this: > > -- > kdeinit4 +kcminit_startup > -- > > and KDE started fine with a few errors when shutting down (that I > cannot be sure if are colateral effects of what I did, but I'm almost > sure not). > > I'm posting this here to help anyone having the same trouble, and > maybe someone who is in more touch with KDE4 development than me to > analyze this. > > Regards, > > Kiyoshi. > > -- If possible, Please CC me when replying. I'm not subscribed to the list. -- To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
|
#3
| |||
| |||
| The versions: -- $ dpkg -l | grep libstream rc libstreamanalyzer0 0.5.5-2 rc libstreams0 0.5.5-2 $ dpkg -l | grep libstrigi rc libstrigiqtdbusclient0 0.5.5-2 -- They are "rc"ed because I just uninstalled KDE4 and downgraded to KDE3. It's too unstable yet. =P If I decide to retry KDE4, I'll took your advice. Thanks, Kiyoshi. On Jan 17, 2008 5:17 PM, Ritesh Raj Sarraf > What version of libstreamanalyzer* and libstrigi* are you using ? > Try upgrading them. > > > Ritesh > > > > Kiyoshi Murata wrote: > > > Ola. > > > > This is my first post and what brought me here was an error I was > > getting when trying to launch KDE4 installed from the packages in the > > experimental repository. > > > > The error was (from ~/.xsession-errors): > > > > -- > > startkde: Starting up... > > kdeinit4: symbol lookup error: /usr/lib/libkio.so.5: undefined symbol: > > > _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_ > > startkde: Could not start kdeinit4. Check your installation. > > -- > > > > I searched here for it, but no one seemed to have the same problem. > > So I went further to find my way through it alone and I found, at > > first, that /usr/lib/libkio.so.5 actually _has_ the supposedly missing > > symbol: > > > > -- > > nm -D /usr/lib/libkio.so.5 | grep > > > _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_ > > U > > > _ZN6Strigi14AnalysisResultC1ERKSslRNS_11IndexWrite rERNS_14StreamAnalyzerES2_ > > -- > > > > So I thought could be any library dynamic loading issue, then I found > > that the startup script 'startkde' set the env variable LD_BIND_NOW. I > > just removed it from the script, by changing the line above: > > > > -- > > LD_BIND_NOW=true kdeinit4 +kcminit_startup > > -- > > > > to this: > > > > -- > > kdeinit4 +kcminit_startup > > -- > > > > and KDE started fine with a few errors when shutting down (that I > > cannot be sure if are colateral effects of what I did, but I'm almost > > sure not). > > > > I'm posting this here to help anyone having the same trouble, and > > maybe someone who is in more touch with KDE4 development than me to > > analyze this. > > > > Regards, > > > > Kiyoshi. > > > > > > -- > If possible, Please CC me when replying. I'm not subscribed to the list. > > > -- > To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org > with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org > > -- To UNSUBSCRIBE, email to debian-kde-REQUEST@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org |
« Previous Thread
|
Next Thread »
| Tools | |
| |
| LinkBack to this Thread: http://fixunix.com/debian/329437-kde4-libkio-undefined-symbol-workaround-fix.html | ||||
| Posted By | For | Type | Date | |
| Compilando o KDE 4 « .::Escovando Bits::. | This thread | Pingback | 02-06-2008 01:37 AM | |
| | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Stumped - symbol loockup error: undefined symbol: EVP_idea_cbc | unix | Mandriva | 24 | 01-14-2008 02:11 AM |
| if you see undefined symbol '__mb_sb_limit' on 6.x | unix | FreeBSD | 0 | 11-22-2007 09:05 PM |
| Re: undefined symbol: RSA_generate_key | unix | modssl | 0 | 10-07-2007 10:21 PM |
| Re: undefined symbol: RSA_generate_key | unix | modssl | 0 | 10-07-2007 10:21 PM |
| ld : Undefined symbol | unix | Aix | 1 | 10-04-2007 12:59 AM |
All times are GMT. The time now is 10:22 AM.
