{"id":33899,"date":"2025-08-02T13:57:22","date_gmt":"2025-08-02T13:57:22","guid":{"rendered":"https:\/\/garfnet.org.uk\/cms\/?p=33899"},"modified":"2025-08-30T17:51:31","modified_gmt":"2025-08-30T17:51:31","slug":"issues-upgrading-to-kde-plasma-6-from-plasma-5","status":"publish","type":"post","link":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/","title":{"rendered":"Issues upgrading to KDE Plasma 6 from Plasma 5 &#8211; SOLVED!"},"content":{"rendered":"<p><strong>In this article I will attempt to address issues upgrading to KDE Plasma 6 from Plasma 5 that I have encountered lately. This is not an exhaustive list. But having undertaken a number of <a href=\"https:\/\/garfnet.org.uk\/cms\/2025\/07\/27\/upgrade-debian-12-bookworm-to-debian-13-trixie\/\">Debian 12 (&#8220;Bookworm&#8221;) to Debian 13 (&#8220;Trixie&#8221;) upgrades<\/a> recently, these are the KDE issues that cropped up for me. I thought I should write them up in the hope it might help someone else too.<\/strong><\/p>\n<h2>Select desktop<\/h2>\n<p>If you have just upgraded your system and you are starting KDE plasma 6 for the first time, then you need to move your mouse pointer along the bottom left of your screen to check to see which desktop is selected. It is likely &#8220;Gnome on Wayland&#8221; or similar. You need to click this and select &#8220;Plasma (Wayland)&#8221; from the popup menu &#8211; assuming that&#8217;s what you want, of course. Unfortunately one cannot screengrab this screen. However the following photo should give you and idea where to look and what to select from the popup menu:-<\/p>\n<figure style=\"width: 2048px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/garfnet.org.uk\/cms\/wp-content\/gallery\/screengrab\/20250726-p2540904-login-screen.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/garfnet.org.uk\/cms\/wp-content\/gallery\/screengrab\/20250726-p2540904-login-screen.jpg\" alt=\"Photo shows new Debian login screen, c\/w the menu that pops up, and what you need to click on that menu in order to select KDE Plasma on Wayland.\" width=\"2048\" height=\"1152\"><\/a><figcaption class=\"wp-caption-text\">Photo shows new Debian login screen, c\/w the menu that pops up, and what you need to click on that menu in order to select KDE Plasma on Wayland.<\/figcaption><\/figure>\n<h2>Gripes and fixes<\/h2>\n<p>Overall, Plasma 6 is superb. However, the Plasma 5 to plasma 6 upgrade is massive. The remarkable thing about this upgrade is that compared to previous KDE version upgrades, we have so few problems this time around. However, there are still a number of minor annoyments. Fortunately these are trivially easy to fix, once you know how.<\/p>\n<p>Firstly, things may not be appearing on the desktop or task bar as expected and\/or the Spectacle screen capture (PrtScn) feature may be broken. Fortunately, there is is an easy fix for this, described in detail here:-<\/p>\n<blockquote class=\"wp-embedded-content\" data-secret=\"DRqy1ZRIjQ\"><p><a href=\"https:\/\/garfnet.org.uk\/cms\/2024\/12\/04\/problems-kde-plasma-6-on-debian-trixie\/\">Problems with KDE Plasma 6 on Debian Trixie<\/a><\/p><\/blockquote>\n<p><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"&#8220;Problems with KDE Plasma 6 on Debian Trixie&#8221; &#8212; Garfnet\" src=\"https:\/\/garfnet.org.uk\/cms\/2024\/12\/04\/problems-kde-plasma-6-on-debian-trixie\/embed\/#?secret=j5eAZj47N5#?secret=DRqy1ZRIjQ\" data-secret=\"DRqy1ZRIjQ\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe><\/p>\n<p>In a nutshell, you simply need to open a terminal type the following and hit return:-<\/p>\n<pre>sudo apt install --reinstall xdg-desktop-portal-kde<\/pre>\n<h3>Bizarre IBus warning<\/h3>\n<p>On starting Plasma 6 you may be confronted with a warning similar to this:-<\/p>\n<blockquote><p>IBus should be called from the desktop session in Wayland. For KDE, you can launch &#8216;systemsettings5&#8217; utility and go to &#8220;Input Devices&#8221; -&gt; &#8220;Virtual Keyboard&#8221; section and select &#8220;IBus Wayland&#8221; icon and click &#8220;Apply&#8221; button to configure IBus in Wayland. For other desktop sessions, you can copy the &#8216;Exec=&#8217; line in org.freedesktop.IBus.Panel.Wayland.Gtk3.desktop file to a configuration file of the session. Please refer each document about the &#8220;Wayland input method&#8221; configuration. Before you configure the &#8220;Wayland input method&#8221;, you should make sure that QT_IM_MODULE and GTK_IM_MODULE environment variables are unset in the desktop session.<\/p><\/blockquote>\n<p>To fix it, you need to create a simple text file, using Kate or similar, in the root of your home directory, called <em><strong>~\/.xinputrc<\/strong><\/em> &#8211; where <em><strong>~\/<\/strong> <\/em>is a shortcut for your home directory and <em><strong>.xinputrc<\/strong><\/em> is the actual file name &#8211; complete with the preceding dot:-<\/p>\n<pre># ~\/.xinputrc\r\n\r\n# Detect session type (Wayland or X11)\r\nif [ \"$XDG_SESSION_TYPE\" = \"wayland\" ]; then\r\n# For Wayland (KDE, GNOME, etc.), no need to force GTK_IM_MODULE or QT_IM_MODULE\r\nexport XMODIFIERS=\"@im=ibus\"\r\nelse\r\n# For X11 (XFCE, MATE, LXDE, etc.), force compatibility\r\nexport GTK_IM_MODULE=ibus\r\nexport QT_IM_MODULE=ibus\r\nexport XMODIFIERS=\"@im=ibus\"\r\nfi<\/pre>\n<p>Save the file, then log out and log back in again. The message should be gone. I cannot claim any credit for this. It was a solution suggested here: <a href=\"https:\/\/discuss.kde.org\/t\/ibus-issue-with-wayland\/3680\/21\" target=\"_blank\" rel=\"noopener\">https:\/\/discuss.kde.org\/t\/ibus-issue-with-wayland\/3680\/21<\/a><\/p>\n<h3>Update KDE Plasma Widgets<\/h3>\n<p>It is also possible that <em>some<\/em> KDE Plasma desktop widgets may not work &#8211; especially those provided by third parties. In most cases there are new versions available. On most of the machines I look after the three widgets that needed replacing were: Kick Off Legacy popup menu, Advanced Radio Player (ARP) and Weather widdget 2.<\/p>\n<p>In most cases I replaced Kickoff Legacy with the new Application Dashboard.<\/p>\n<p>The latest ARP is available from the widgets dialogue, though you may need to uninstall and fully remove the old one first. The files that comprise these Plasma widgets live in:-<\/p>\n<ul>\n<li>~\/.local\/share\/plasma\/plasmoids\/<\/li>\n<\/ul>\n<p>My favourite weather widget, KateBLackAdder&#8217;s &#8220;Weather WIdget 2&#8221; has been replaced by version 3.0.4, and is available to download as an installable &#8216;Plasmoid&#8217; from her GitHub:-<\/p>\n<ul>\n<li><a href=\"https:\/\/github.com\/blackadderkate\/weather-widget-2\/releases\/tag\/V3.0.4\" target=\"_blank\" rel=\"noopener\">https:\/\/github.com\/blackadderkate\/weather-widget-2\/releases\/tag\/V3.0.4<\/a><\/li>\n<\/ul>\n<h3>Install missing QML dependencies<\/h3>\n<p>When you install replacement widgets you may get some errors complaining that various QML components are missing. A blanket fix for this is simply to install all the possible QML dependencies. This can be done in one hit and hopefully future-proofs one if one adds further dependent widgets. OK,&nbsp; I admit it is something of a sledgehammer solution, insofar as one is not determining which dependency is actually missing. On the other hand, these dependencies are quite small and only require about 20MiB of disk space:-<\/p>\n<pre>sudo apt install qml6-module-*<\/pre>\n<h3>Restart plasmashell<\/h3>\n<p>Having installed the QML dependencies, it is likely that you will also need to restart plasmashell. My favourite way of doing this is to invoke &#8220;krunner&#8221; by simultaneously pressing alt and space-bar keys, then typing or pasting the following and hitting return:-<\/p>\n<pre>killall plasmashell ; plasmashell<\/pre>\n<p>Note this is a command you run as a user. You do <strong>not<\/strong> use sudo.<\/p>\n<h2>Updated stations list for ARP (Advance Radio Player widget)<\/h2>\n<p>To celebrate the release of the latest stable Debian GNU\/Linux, GarfNet has produced an updated ARP radio station database file, which you can import into your ARP widget. You may download from here:-<\/p>\n<blockquote class=\"wp-embedded-content\" data-secret=\"8htEUj7y5Z\"><p><a href=\"https:\/\/garfnet.org.uk\/cms\/2025\/07\/26\/database-file-for-advanced-radio-player-widget\/\">BBC stations database file for Advanced Radio Player widget for KDE Plasma desktop<\/a><\/p><\/blockquote>\n<p><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"&#8220;BBC stations database file for Advanced Radio Player widget for KDE Plasma desktop&#8221; &#8212; Garfnet\" src=\"https:\/\/garfnet.org.uk\/cms\/2025\/07\/26\/database-file-for-advanced-radio-player-widget\/embed\/#?secret=ZR971BOtX5#?secret=8htEUj7y5Z\" data-secret=\"8htEUj7y5Z\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe><\/p>\n<h2>Conclusion<\/h2>\n<p>In my humble opinion, getting the latest KDE Plasma desktop is arguably the best thing about the recent Debian upgrade. Well that and the fact that Wayland is becoming a lot more mature now. Do feel free to leave a comment with regard to how if any of these little fixes worked for you. And you you have any KDE fixes to suggest in this context then again, please leave a comment below. \ud83d\ude42<\/p>\n<hr>\n<h2>Disclaimer<\/h2>\n<p>These fixes come with no warranty, express or implied.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article I will attempt to address issues upgrading to KDE Plasma 6 from Plasma 5 that I have encountered lately. This is not an exhaustive list. But having undertaken a number of Debian 12 (&#8220;Bookworm&#8221;) to Debian 13 (&#8220;Trixie&#8221;) upgrades recently, these are the KDE issues that cropped up for me. I thought&#8230;<\/p>\n","protected":false},"author":1,"featured_media":33903,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"_kad_post_transparent":"default","_kad_post_title":"default","_kad_post_layout":"default","_kad_post_sidebar_id":"","_kad_post_content_style":"default","_kad_post_vertical_padding":"default","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[1636,12,6,1635,691,18],"tags":[],"class_list":["post-33899","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","category-faq","category-journal","category-kde","category-linux","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Issues upgrading to KDE Plasma 6 from Plasma 5 - SOLVED! - GarfNet<\/title>\n<meta name=\"description\" content=\"Though fewer problems than previous upgrades, these are the issues upgrading to KDE Plasma 6 from Plasma 5 that I have encountered so far.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Issues upgrading to KDE Plasma 6 from Plasma 5 - SOLVED! - GarfNet\" \/>\n<meta property=\"og:description\" content=\"Though fewer problems than previous upgrades, these are the issues upgrading to KDE Plasma 6 from Plasma 5 that I have encountered so far.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/\" \/>\n<meta property=\"og:site_name\" content=\"GarfNet\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-02T13:57:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-30T17:51:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2025\/08\/nggallery_import\/Screenshot_20250802_133758.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1075\" \/>\n\t<meta property=\"og:image:height\" content=\"657\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Garf\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Garf\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/\"},\"author\":{\"name\":\"Garf\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"headline\":\"Issues upgrading to KDE Plasma 6 from Plasma 5 &#8211; SOLVED!\",\"datePublished\":\"2025-08-02T13:57:22+00:00\",\"dateModified\":\"2025-08-30T17:51:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/\"},\"wordCount\":959,\"commentCount\":5,\"publisher\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"image\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/nggallery_import\\\/Screenshot_20250802_133758.png\",\"articleSection\":[\"Debian\",\"FAQ\",\"Journal\",\"KDE\",\"Linux\",\"Technology\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/\",\"name\":\"Issues upgrading to KDE Plasma 6 from Plasma 5 - SOLVED! - GarfNet\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/nggallery_import\\\/Screenshot_20250802_133758.png\",\"datePublished\":\"2025-08-02T13:57:22+00:00\",\"dateModified\":\"2025-08-30T17:51:31+00:00\",\"description\":\"Though fewer problems than previous upgrades, these are the issues upgrading to KDE Plasma 6 from Plasma 5 that I have encountered so far.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/#primaryimage\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/nggallery_import\\\/Screenshot_20250802_133758.png\",\"contentUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/nggallery_import\\\/Screenshot_20250802_133758.png\",\"width\":1075,\"height\":657},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/2025\\\/08\\\/02\\\/issues-upgrading-to-kde-plasma-6-from-plasma-5\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Issues upgrading to KDE Plasma 6 from Plasma 5 &#8211; SOLVED!\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#website\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/\",\"name\":\"GarfNet\",\"description\":\"Penguin-powered and full of Unixy goodness, since 1995...\",\"publisher\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/#\\\/schema\\\/person\\\/27529e0ea0460ec8c299743f70c06635\",\"name\":\"Garf\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"contentUrl\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\",\"width\":2420,\"height\":1928,\"caption\":\"Garf\"},\"logo\":{\"@id\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/wp-content\\\/uploads\\\/2024\\\/07\\\/garflogo-garfnet-1.png\"},\"url\":\"https:\\\/\\\/garfnet.org.uk\\\/cms\\\/author\\\/garf-admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Issues upgrading to KDE Plasma 6 from Plasma 5 - SOLVED! - GarfNet","description":"Though fewer problems than previous upgrades, these are the issues upgrading to KDE Plasma 6 from Plasma 5 that I have encountered so far.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/","og_locale":"en_GB","og_type":"article","og_title":"Issues upgrading to KDE Plasma 6 from Plasma 5 - SOLVED! - GarfNet","og_description":"Though fewer problems than previous upgrades, these are the issues upgrading to KDE Plasma 6 from Plasma 5 that I have encountered so far.","og_url":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/","og_site_name":"GarfNet","article_published_time":"2025-08-02T13:57:22+00:00","article_modified_time":"2025-08-30T17:51:31+00:00","og_image":[{"width":1075,"height":657,"url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2025\/08\/nggallery_import\/Screenshot_20250802_133758.png","type":"image\/png"}],"author":"Garf","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Garf","Estimated reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/#article","isPartOf":{"@id":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/"},"author":{"name":"Garf","@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"headline":"Issues upgrading to KDE Plasma 6 from Plasma 5 &#8211; SOLVED!","datePublished":"2025-08-02T13:57:22+00:00","dateModified":"2025-08-30T17:51:31+00:00","mainEntityOfPage":{"@id":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/"},"wordCount":959,"commentCount":5,"publisher":{"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"image":{"@id":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/#primaryimage"},"thumbnailUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2025\/08\/nggallery_import\/Screenshot_20250802_133758.png","articleSection":["Debian","FAQ","Journal","KDE","Linux","Technology"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/","url":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/","name":"Issues upgrading to KDE Plasma 6 from Plasma 5 - SOLVED! - GarfNet","isPartOf":{"@id":"https:\/\/garfnet.org.uk\/cms\/#website"},"primaryImageOfPage":{"@id":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/#primaryimage"},"image":{"@id":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/#primaryimage"},"thumbnailUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2025\/08\/nggallery_import\/Screenshot_20250802_133758.png","datePublished":"2025-08-02T13:57:22+00:00","dateModified":"2025-08-30T17:51:31+00:00","description":"Though fewer problems than previous upgrades, these are the issues upgrading to KDE Plasma 6 from Plasma 5 that I have encountered so far.","breadcrumb":{"@id":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/#primaryimage","url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2025\/08\/nggallery_import\/Screenshot_20250802_133758.png","contentUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2025\/08\/nggallery_import\/Screenshot_20250802_133758.png","width":1075,"height":657},{"@type":"BreadcrumbList","@id":"https:\/\/garfnet.org.uk\/cms\/2025\/08\/02\/issues-upgrading-to-kde-plasma-6-from-plasma-5\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/garfnet.org.uk\/cms\/"},{"@type":"ListItem","position":2,"name":"Issues upgrading to KDE Plasma 6 from Plasma 5 &#8211; SOLVED!"}]},{"@type":"WebSite","@id":"https:\/\/garfnet.org.uk\/cms\/#website","url":"https:\/\/garfnet.org.uk\/cms\/","name":"GarfNet","description":"Penguin-powered and full of Unixy goodness, since 1995...","publisher":{"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/garfnet.org.uk\/cms\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/garfnet.org.uk\/cms\/#\/schema\/person\/27529e0ea0460ec8c299743f70c06635","name":"Garf","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","url":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","contentUrl":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png","width":2420,"height":1928,"caption":"Garf"},"logo":{"@id":"https:\/\/garfnet.org.uk\/cms\/wp-content\/uploads\/2024\/07\/garflogo-garfnet-1.png"},"url":"https:\/\/garfnet.org.uk\/cms\/author\/garf-admin\/"}]}},"_links":{"self":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/33899","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/comments?post=33899"}],"version-history":[{"count":16,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/33899\/revisions"}],"predecessor-version":[{"id":33905,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/posts\/33899\/revisions\/33905"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/media\/33903"}],"wp:attachment":[{"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/media?parent=33899"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/categories?post=33899"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/garfnet.org.uk\/cms\/wp-json\/wp\/v2\/tags?post=33899"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}