Dear Maintainer, In KDevelop, I opened the embedded terminal (a toolview). With that, I got immediately error messages like: qdbus: could not find a Qt installation of '' Got no path Consequently, the commands 's!' and 'b!' didn't work but produce the same error messages. As a workaround, I created a script `/usr/local/bin/qdbus`: --------------------------------------------------------- #!/bin/sh # Debian 13 / Qt6 workaround: # KDE tools (e.g. KDevelop embedded terminal) expect `qdbus` on PATH, # but qdbus-qt6 installs it only under /usr/lib/qt6/bin and qtchooser # does not reliably handle Qt6. This wrapper restores the expected # `qdbus` command without modifying packaged files. # exec /usr/lib/qt6/bin/qdbus "$@" --------------------------------------------------------- With this wrapper, the embedded terminal works as expected for me. This bug report should perhaps be reassigned to packages regarding Qt5/6 configuration. Best regards, Gerhard