I always had solved this issue adding this lines on the startkde script:<br><br>export KDEDIR=$HOME/kde<br>export QTDIR=$HOME/qt-copy<br>export QT_PLUGIN_PATH=$KDEDIR/lib/kde4/plugins:$QT_PLUGIN_PATH<br>export PATH=$KDEDIR/bin:$QTDIR/bin:/usr/local/bin:$PATH<br>
if [[ $LD_LIBRARY_PATH = "" ]]<br>    then export LD_LIBRARY_PATH=$KDEDIR/lib:$QTDIR/lib<br>    else export LD_LIBRARY_PATH=$KDEDIR/lib:$QTDIR/lib:$LD_LIBRARY_PATH<br>fi<br> <br>I already reported a simular topic here:<br>
<a href="http://lists-archives.org/kde-devel/14650-could-not-start-d-bus-check-your-installation-and-startkde.html">http://lists-archives.org/kde-devel/14650-could-not-start-d-bus-check-your-installation-and-startkde.html</a><br>
<br>Hope this help<br><br>Greetings<br>Percy<br><br><br><div><span class="gmail_quote">2008/3/3, Thiago Macieira <<a href="mailto:thiago@kde.org">thiago@kde.org</a>>:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Monday 03 March 2008 14:11:20 David Faure wrote:<br> > On Sunday 02 March 2008, David Jarvie wrote:<br> > > Currently, startkde fails to start a KDE session when PATH doesn't<br> > > contain the Qt bin directory. The startkde script uses the directory<br>
 > > containing itself as the default for the KDE installation's bin<br> > > directory, and adds that to PATH. But it doesn't set Qt's directory.<br> ><br> > Can you remind us what the Qt bin directory is necessary for, during an end<br>
 > user's kde session?<br> <br> <br>qdbus & qdbusviewer. Sometimes, qtconfig.<br> <br> But qdbus itself is run by startkde to detect whether D-Bus is started.<br> <br><br> > > ldd $bindir/kde4-config|grep libQtCore.so<br>
 ><br> > I'm not sure that's portable.<br> <br> <br>It's not, but we're not caring for the non-ELF X11 systems at this point in<br> time. The ELF ones should have ldd.<br> <br><br> > > sed 's#^[^/]*\(.*\)/lib/.*$#\1#'`/bin<br>
 ><br> > And this makes assumptions on the way Qt is installed, doesn't it? (Not<br> > that I can think of a case where this wouldn't be true, but you never know<br> > :)<br> <br> <br>What I would recommend is simply modifying kde4-config to print the value of<br>
 QLibraryInfo::location(QLibraryInfo::BinariesPath).<br> <br> Some of the other values may be useful too:<br> <a href="http://doc.trolltech.com/4.4beta/qlibraryinfo.html#location">http://doc.trolltech.com/4.4beta/qlibraryinfo.html#location</a><br>
 <br><br> <br> --<br>   Thiago Macieira  -  thiago (AT) <a href="http://macieira.info">macieira.info</a> - thiago (AT) <a href="http://kde.org">kde.org</a><br>     PGP/GPG: 0x6EF45358; fingerprint:<br>     E067 918B B660 DBD1 105C  966C 33F5 F005 6EF4 5358<br>
 <br></blockquote></div><br>