Frequently Asked Questions (FAQ)faq icon

1. What is KDE?

KDE is an umbrella brand encompassing technologies created by the KDE community. KDE SC (KDE Software Compilation) is the leading desktop environment for Linux and UNIX platforms. It is comprised of a workspace, a collection of programs and supporting technologies.

The homepage for the project is at www.kde.org

An official introduction is found at www.kde.org/whatiskde/

2. I can't install KDE because of package dependency problems.

Typically Debian doesn't have package dependency problems until something messes it up. Dependency problems and broken packages are extremely rare when using a stable Debian release such as Stretch. Testing and Unstable releases are slightly more prone to these problems, as they have not been through the rigorous level of testing and there may be packaging problems in the repository, meaning that (especially with unstable/Sid), KDE may not always be in an installable state. A workaround is to install the kde-core meta package and pick the rest of the needed applications manually.

If you have installed backports of some package onto Debian Stable, and your backport package overwrote a stable package which the KDE stable packages depend on, then you may not be able to install KDE on your system, until you remove the backported package. This is also highly unsupported

3. I can't compile Qt/KDE applications! I get this: configure error: Qt not found

A very common problem when compiling KDE programs (or other ones which use Qt), is that the configure script, is unable to find where Qt is, and failing with a message like this:

checking for Qt... configure: error: Qt (>= Qt 3.1.0) (headers and libraries) not found. Please check your installation!

This problem can mean different things:

First, make sure you have (at least) libqt3-mt-dev and qt3-dev-tools. If configure is successful, but during compilation, the build fails because a file is missing (for example, qlist.h), this means this software is using obsolete headers. Please, report this fact to the developers of this software, and to complete the build, install libqt3-compat-headers.

If configure still fails with the same error, this means is failing to find where Qt is installed. You can pass the exact path to the configure script this way:

--with-qt-dir=/usr/share/qt3

Since this is a bit annoying if you are compiling lots of times, you can set the environment variable QTDIR, pointing to /usr/share/qt3 (in bash: export QTDIR=/usr/share/qt3).

If you wish to compile Qt4 applications, please install the libqt4-dev and qt4-dev-tools packages.

4. When I remove one application, my whole KDE is deleted!

Please refer to the KDE 4 page for the available testing/unstable metapackages.

If you installed all KDE, for example, running apt-get install kde, you have installed a metapackage, and all its dependencies (kdebase, kdenetwork, kdegraphics, etc.), but the metapackage itself is empty.

If after this, you remove, for example, kfloppy, you will see that two more packages will be removed: kdeutils, and kde. This doesn't means that all your utils and all your desktop will be removed, just means that you no longer have your complete set of utils, and the whole KDE applications.

Using aptitude it's a bit different. If you installed the kde metapackage using aptitude, the rest of packages installed as dependencies of kde, are marked as automatically installed. Then, if you remove one of this dependencies (for example, kfloppy), it will remove kdeutils and kde, and the rest of packages that those packages depend on (because they are marked as automatically installed).

If you don't want those packages removed, mark them as manually installed (with aptitude unmarkauto or pressing m (lowercase) in GUI mode when the package name is highlighted).

6. I can't decrypt some messages with KMail

You probably are missing the gnupg-agent package. Read the document about using OpenPGP and PGP/MIME in the KMail website. Install pinentry-qt4 and gnupg-agent and after that, configure GPG as explained in the HOWTO. Restart X to make sure /etc/X11/Xsession.d/90gpg-agent is run.