After upgrading to trinity 3.5.13 from 3.5.12, kded is failing to start
with the following when running konsole from within Gnome:
[ben@Gena5:~]$ /opt/trinity/bin/konsole
kdeinit: Launched DCOPServer, pid = 8517 result = 0
kdeinit: Launched KLauncher, pid = 8522 result = 0
kdeinit: opened connection to :0.0
kdeinit: Launched KDED, pid = 8523 result = 0
kded [kdeinit] --new-startup: symbol lookup error:
/opt/trinity/lib/libkdecore.so.4: undefined symbol: _Z14get_tqt_x_timev
DCOP aborting (delayed) call from 'anonymous-8523' to 'kded'
kdeinit: PID 8523 terminated.
konsole: symbol lookup error: /opt/trinity/lib/libkdeui.so.4: undefined
symbol: _ZN7QObject18childrenListObjectEv
I am running Ubuntu 10.10 (Maverick) 64-bit.
ldd** doesn't show any missing libraries on kdeinit, kded, and konsole.
Does anyone have any ideas how I go about fixing this?
Ben
I see trinity developers are talking about how to ease users contributions.
It inspired me to submit the following tip.
It changes the settings for the whole system.
Is there a way to add a custom icons folder in $HOME ?
Comments are welcomed.
(And feel free to correct my english.)
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
-------------------------------------------------------------------------------
Chega De Saudade (No More Blues)
how to change the default color of the folder icon in Crystal SVG icons theme
-------------------------------------------------------------------------------
I like the Crystal SVG icons shapes but I've been tired to see so much blue
folders in konqueror. I needed colors!
So I wrote down this tip for my personal use, and to share with others.
(Following commands must be run as root.)
1/ The first time:
# possible values for COLOR: blue green grey orange red violet yellow
COLOR=orange
ICONSFOLDER=/opt/trinity/share/icons
for d in $ICONSFOLDER/crystalsvg/*/filesystems ; do
echo $d
[ ! -e $d/folder_blue.png ] &&
[ ! -e $d/folder.orig.png ] &&
mv -v $d/folder.png $d/folder.orig.png &&
ln -v folder.orig.png $d/folder_blue.png
ln -v $d/folder_$COLOR.png $d/folder.png
done
2/ To change color later:
# possible values for COLOR: blue green grey orange red violet yellow
COLOR=violet
ICONSFOLDER=/opt/trinity/share/icons
for d in $ICONSFOLDER/crystalsvg/*/filesystems ; do
rm -v $d/folder.png
ln -v $d/folder_$COLOR.png $d/folder.png
done
3/ To undo all changes and revert to the default
ICONSFOLDER=/opt/trinity/share/icons
for d in $ICONSFOLDER/crystalsvg/*/filesystems ; do
echo $d
[ ! -e $d/folder_blue.png ] &&
[ ! -e $d/folder.orig.png ] &&
rm -v $d/folder.png $d/folder_blue.png &&
mv -v $d/folder.orig.png $d/folder.png ||
echo "ERROR!"
done
4/ Notes
* Crystal SVG icons theme is installed by kdelibs-data-trinity
* On Debian-based systems, dpkg diversions may be added:
for d in /opt/trinity/share/icons/crystalsvg/*/filesystems ; do
dpkg-divert --local --divert $d/folder.orig.png --add $d/folder.png
done
To remove:
for d in /opt/trinity/share/icons/crystalsvg/*/filesystems ; do
dpkg-divert --remove $d/folder.png
done
5/ Disclaimer
USE THIS TIP AT YOUR OWN RISK. BACKUPS PREVENT TEARS!
For example:
cp a /opt/trinity/share/icons/{crystalsvg,.crystalsvg.save}
To restore:
rm -r /opt/trinity/share/icons/crystalsvg
mv /opt/trinity/share/icons/{.crystalsvg.save,crystalsvg}
Copyright (C) 2011 Laurent Dard
License: GPL-2+
The above text is free documentation; you can redistribute it
and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later
version.
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
--
Laurent Dard
On Wednesday 27 October 2004 10:09:02 pm Werner Joss wrote:
> On Thursday 17 November 2011 12:47:04 Michael Henry wrote:
> > There is a couple of kde 3.5 programs. How do I get them upgraded to
> > trinity?
>
> you need to get the source packages and recompile them for trinity.
> requires some tweaks to the autoconf* stuff, though.
> I can provide some hints for that, if you are interested.
> (I've done that already for some programs I like, see
> http://www.hoernerfranzracing.de/zip/trinity/index.html )
What of the Qt to TQt changes? Wouldn't that interfere?
--
Kristopher Gamrat
Ark Linux webmaster
http://www.arklinux.org/
I think that in Qt, the irritating question about licenses, that appears when
executing 'configure', must be removed. So I suggest to change it.
I saw that other things should be modified as well: README* INSTALL FAQ...
And a lot of references to trolltech should be converted into references to
Trinity: qt-bugs(a)trolltech.com --> http://bugs.pearsoncomputing.net/ etc.
I need a clarification about licenses.
According to /usr/share/doc/libqt3-mt/copyright (Trinity version):
"Qt 3.3 is triple licensed under the QPL, GPL 2 and GPL 3."
But Trinity web site says:
"any Qt3 version released by this project is licensed under the GPL only"
http://www.trinitydesktop.org/wiki/bin/view/Documentation/Releases_3_5_13
Does it means there is a bug with 'THE Q PUBLIC LICENSE' which should be
removed?
And about modules, may the lines (225-227)
MODULES="styles tools kernel widgets dialogs iconview workspace inputmethod"
[ "$PLATFORM_QWS" = "yes" ] && [ "$Products" = "qt-professional" ] && MODULES="$MODULES network"
[ "$Products" != "qt-professional" ] && MODULES="$MODULES network canvas table xml opengl sql"
be replaced by
MODULES="styles tools kernel widgets dialogs iconview workspace \
inputmethod network canvas table xml opengl sql"
without breaking things?
A third question: will Trinity Qt support Mac and QWS?
I reported a bug:
http://bugs.pearsoncomputing.net/show_bug.cgi?id=628
with a patch for the 'configure' file, to be reviewed:
http://bugs.pearsoncomputing.net/attachment.cgi?id=128
* Free edition GPL 2 & 3 only (no QPL)
* Interactive part about licenses removed
* Defined modules: "styles tools kernel widgets dialogs iconview workspace
inputmethod network canvas table xml opengl sql"
--
Laurent Dard
On Thursday 28 October 2004 04:09:02 Werner Joss wrote:
> On Thursday 17 November 2011 12:47:04 Michael Henry wrote:
> > There is a couple of kde 3.5 programs. How do I get them upgraded to
> > trinity?
>
> you need to get the source packages and recompile them for trinity.
> requires some tweaks to the autoconf* stuff, though.
> I can provide some hints for that, if you are interested.
> (I've done that already for some programs I like, see
> http://www.hoernerfranzracing.de/zip/trinity/index.html )
(double post because original had 2004 date stamp..)
werner
There is a couple of kde 3.5 programs. How do I get them upgraded to
trinity?
--
Shalom and God Bless
Bro. Michael Henry
Associate Minister
Monticello Christian Church
With 3.5.13 the default match in "Find Messages" has changed from
"Complete Message" to "Subject".
This requires an annoying extra couple of clicks to search Complete
Message. People used to years of "Complete Message" are annoyed
when their searches don't find the messages they were looking for,
and we have to explain the change and remind them to change "Subject"
to "Complete Message".
There's no positive side to this change as one can already search
on Subject much more readily in the Search field above the message
list.
Please consider reverting this change for R14.
Also, if there's a way to fix this via a config file change I'd
appreciate hearing about it.
Thanks,
--Mike Bird
There is a problem with keramik windows decoration, there is almost no window
border. Changing border size didn't help.
Apart of this, everything seems OK and I am happy with the transition from KDE
3.5.10 to Trinity 3.5.13 on CentOS 5.
Thanks for the great work !
--
Philippe BOURDEU d'AGUERRE
AIME - Campus de l'INSA http://www.aime-toulouse.fr/
135, av. de Rangueil Tel +33 561 559 885
31077 TOULOUSE Cedex 4 - FRANCE Fax +33 561 559 870
Hi,
Kmail is giving me issues with setting up a GPG for signing. I'm hoping
someone can help. I've never used a signing key for my email, but one of my
friend's email keeps getting hacked, and I've been hacked a couple times, so
it would help if he and I both could have a signing key.
I tried generating a gpg key using both the "gpg --gen-key" command and using
KGPG. KGPG recognizes both the key I used it to generate, and the key I
generated with the gpg key (as in, both keys show up). KGPG shows both keys
as being trusted ultimately.
Kmail recognizes both keys, but the OK button is greyed out, and question
marks are next to both keys.
To add the keys, I went to the Kmail settings -> Identities -> Default
identity -> Modify -> Cryptography -> OpenPGP Signing Key -> Change. Both
keys are here but unselectable as described above.
In Kmail settings -> Security -> Crypto Backends, both "OpenPGP (gpg)"
and "S/MIME (gpgsm)" are selectable (not grayed out) and check marked.
In ~/.gnugp/gpg.conf, I have the 'use-agent' option on it's own line (without
quotes, of course).
In ~/.gnugp/gpg-agent.conf, I put the following as suggested in my Google
searches:
---
pinentry-program /usr/bin/pinentry-x11
no-grab
default-cache-ttl 1800
---
I have tried with gpg-agent running in daemon mode, and without it running at
all.
I have KGPG running in my system tray. When gpg-agent is running, I have KGPG
set to use it, and I unset it when gpg-agent isn't running.
For those who need a visual of my Kmail not accepting my GPG keys, I uploaded
a screenshot to http://linuxjutsu.com/~kris/Pictures/kmail_gpg_prob.png .
Both keys there are mine, generated on my machine under the user that I am
logged in as. Since both are Ultimately Trusted, they should be accepted.
Reread Keys in the Kmail dialog doesn't help, nor does right clicking the keys
and selecting Recheck.
The certificate manager button, and the Search For External Certificates
button, both open Kleopatra. I don't want to use a certificate, I want to use
one of the GPG keys that it's listing.
Any suggestions much appreciated.
--
Kristopher Gamrat
Ark Linux webmaster
http://www.arklinux.org/
Hello. Now that I have solved the "unable to start kdeinit" problem,
there are good and bad news.
Good news is that I am editing my videos with kdenlive from the TDE
environment and that's good.
Not so good news is that I set up two keyboard layouts: one Swiss
French (that's what I use), the other US English (for different
situation where a US Keyboard is usefull. Now, after some time, I
loose the swiss keyboard - no message, just I suddenly find out I'm
QWERTY. I can solve this by changing the keyboard from kicker (set US,
set fr_CH), but the swiss keyboard will disappear later again.
I first thought I should remove the US keyboard, but that's a bad
idea, because the swiss keyboard keeps vanishing and I have no more
applet to click on in kicker...
Anyone see this behaviour with his keyboard? Could this be a KDE 4 conflict?
Thierry