You are not logged in.

Dear visitor, welcome to KDE-Forum.org. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

1

Thursday, March 10th 2005, 8:23am

help with kde apps not working

Recent I noticed everytime I run kde apps, I get this error:

symbol lookup error: /usr/lib/libkdecore.so.4: undefined symbol: qt_x_user_time

I google this error and found a few site with folks reporting it. however, there is no good fix being posted. does anyone here know how to fix this problem?

K

2

Thursday, March 10th 2005, 5:42pm

RE: help with kde apps not working

To add more info, root can run kde apps fine. Problem only occurs with normal users

Khoa

3

Friday, March 11th 2005, 12:25am

RE: help with kde apps not working

anybody know anything?

K

Posts: 15

Location: Padova, Italy

Occupation: Student

  • Send private message

4

Friday, March 11th 2005, 8:47am

Quoted

root can run kde apps fine. Problem only occurs with normal users

It seems a problem with libraries PATH. It seems root gets the PATH correctly, but your user not.

There is an environment variable to set this path, but I cannot rememebr its name ;(, anybody out there can be more precise than me?

Hi
--
Antonio

5

Monday, November 7th 2005, 12:52am

The environment variable is called LD_LIBRARY_PATH. To find out what it is set to type:

$ echo $LD_LIBRARY_PATH
/opt/ACIS/lib/linux_so/:/opt/ACIS/bin/linux_so:/home/ensab/Staroffice/lib:/usr/local/lib:/usr/local/Qtopia/lib
$

Which for me gives the response you see. The library that stopped some KDE apps working in my path was /usr/local/Qtopia/lib at the end. For you it may be different.

To clear the path do

$ export LD_LIBRARY_PATH=

Then gradually add directories to it like this:

$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/ACIS/bin/linux_s

then run your failing KDE app. Go through each directory in the original list in turn until you find the one causing the problems.