<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Kubuntu Forums - Newbie Support</title>
		<link>https://www.kubuntuforums.net/</link>
		<description>Begin here if you are new to Linux generally, and Kubuntu specifically.</description>
		<language>en</language>
		<lastBuildDate>Mon, 22 Jun 2026 00:56:45 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>images/misc/rss.png</url>
			<title>Kubuntu Forums - Newbie Support</title>
			<link>https://www.kubuntuforums.net/</link>
		</image>
		<item>
			<title><![CDATA[[SOLVED] Can't get login script to not prompt for password]]></title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692739-solved-can-t-get-login-script-to-not-prompt-for-password</link>
			<pubDate>Wed, 17 Jun 2026 11:11:07 GMT</pubDate>
			<description><![CDATA[Can't get login script to not prompt for password. 
 
The script is run on startup and the effects can be seen before first login, yet after I login...]]></description>
			<content:encoded><![CDATA[Can't get login script to not prompt for password.<br />
<br />
The script is run on startup and the effects can be seen before first login, yet after I login I am prompted for a password.<br />
<br />
<br />
I have a script:<br />
-rwxrwxr-x 1 nick nick 43 Jun 17 20:57 /home/nick/Documents/Scripts/run_on_login.sh<br />
<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(30 *  + 12px + 20px);">#!/bin/bash
systemctl enable --now ratbagd</pre>
</div>I want it to run on login to enable mouse customization. So I add it to autostart and it creates the file:<br />
-rw------- 1 nick nick 162 Jun 17 20:41 home/nick/.config/autostart/run_on_login.sh.desktop<br />
<br />
I then created the file:<br />
-rw-r----- 1 root root 239 Jun 17 20:54 /etc/sudoers.d/my_custom_rules<br />
<br />
and have tried all these entries at once<br />
<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(30 *  + 12px + 20px);">root ALL=(ALL) NOPASSWD: /home/nick/Documents/Scripts/run_on_login.sh
root ALL=(ALL) NOPASSWD: /home/nick/.config/autostart/run_on_login.sh.desktop
nick ALL=(ALL) NOPASSWD: /home/nick/Documents/Scripts/run_on_login.sh
nick ALL=(ALL) NOPASSWD: /home/nick/.config/autostart/run_on_login.sh.desktop</pre>
</div>yet I am still prompted for a password after login.<br />
<br />
What am I doing wrong?<br />
<br />
How do I run a script without being prompted for password?<br />
Do I have to change the script owner to root, I was hoping to avoid that.​]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>knuuser</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692739-solved-can-t-get-login-script-to-not-prompt-for-password</guid>
		</item>
		<item>
			<title>My Kubuntu 26.04 LTS System Keeps Hanging; When it Recovers, I Get a Memory Shortage Avoided message from the kernel</title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692723-my-kubuntu-26-04-lts-system-keeps-hanging-when-it-recovers-i-get-a-memory-shortage-avoided-message-from-the-kernel</link>
			<pubDate>Tue, 16 Jun 2026 07:58:31 GMT</pubDate>
			<description>I have a kubuntu system currently running 26.04, upgraded from 25.10  
 
On both releases, the system would hang from time to time.  Often when it...</description>
			<content:encoded><![CDATA[I have a kubuntu system currently running 26.04, upgraded from 25.10 <br />
<br />
On both releases, the system would hang from time to time.  Often when it finally recovered I'd see a message like this<br />
<br />
<a href="filedata/fetch?id=692724&amp;d=1781595383&amp;type=thumb" class="bbcode-attachment"  ><img title="Screenshot_20260616_003541.png" data-attachmentid="692724" data-align="none" data-size="full" border="0" src="filedata/fetch?id=692724&amp;d=1781595383&amp;type=thumb" alt="Click image for larger version

Name:	Screenshot_20260616_003541.png
Views:	60
Size:	197.9 KB
ID:	692724" data-fullsize-url="filedata/fetch?id=692724&amp;d=1781595383&amp;type=thumb" data-thumb-url="filedata/fetch?id=692724&amp;d=1781595383&amp;type=thumb" data-title="" data-caption="Screenshot_20260616_003541.png" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /></a><br />
<br />
Today by the time it recovered I had 3 of these messages.<br />
<br />
<br />
AFAIK, Linux is a demand paged operating system. Given this, it did not run out of *memory*, it ran out of virtual memory. Put another way, it ran out of swap space.<br />
<br />
I presume therefore that the initial installation of Kubuntu made a bad decision about the total amount of swap space to configure, and *if* linux has a way to add swap space dynamically (and automatically), that ability was not turned on  by the installation.<br />
<br />
If this analysis is correct, (1) how can I fix the swap space configuration and (2) how do I report the presumed problem with the installation process?<br />
<br />
Can it be fixed at all without reinstalling from scratch. (I don't recall whether I was even given an option to configure how my SSDs/disks would be used.)<br />
<br />
Alternatively, my knowledge of the linux kernel is out of date, and the old OOM system I knew and didn't much like a decade ago has been replaced with something even worse, such that the amount of RAM in the system effectively limits the amount of swap space usable. I understand that MacOS and iOS compress user process memory in preference to paging it to disk, though MacOS can then page out the compressed memory; iOS on the other hand cannot page out individual pages - it's whole process or nothing. I don't know the motivation for the MacOS variant, but the iOS variant is intended to protect SSDs with a limited number of write cycles available. (The compression mechanism is also faster than paging, but I don't think any user is going to notice.) Perhaps Linux has implemented something similar, now that SSDs are overwhelmingly popular? <br />
<br />
Finally, is it just that linux is no longer good at running on &quot;low end&quot; hardware?  I &quot;only&quot; have 32 GB of RAM, which I would have expected to be enough, even with a job lot of firefox tabs trying to call home to get more ads, even though they aren't currently on screen. Maybe linux is even more bloated than MacOS, where a 16 GB system only started misbehaving in a similar way about 2 years ago, after the horrible OS upgrade that caused me to start moving from MacOS to linux. (And it just randomly kills the web browser once or twice a week, without a hang, whereas Kbuntu got 3 processes this time, including both Firefox and my mail client.)<br />
<br />
 ]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>DinoNerd</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692723-my-kubuntu-26-04-lts-system-keeps-hanging-when-it-recovers-i-get-a-memory-shortage-avoided-message-from-the-kernel</guid>
		</item>
		<item>
			<title>24.4 reinstall. What do I need to note from current install (users, drives, permissions) etc</title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692656-24-4-reinstall-what-do-i-need-to-note-from-current-install-users-drives-permissions-etc</link>
			<pubDate>Wed, 10 Jun 2026 19:09:22 GMT</pubDate>
			<description><![CDATA[After continual graphic glitches in my currrent install, I'm going to bite and reinstall. 
 
Currently I have a few physical drives mounted (ex my...]]></description>
			<content:encoded><![CDATA[After continual graphic glitches in my currrent install, I'm going to bite and reinstall.<br />
<br />
Currently I have a few physical drives mounted (ex my Windows box) with all my movies and TV episodes.<br />
<br />
Is it worth/ possible do save info like the users, permission and the drive structure to ease setup of the reinstall or is it literally a case of starting all over again from scratch? The only additional programmes I need to install will be plex and maybe jellyfin. <br />
<br />
I recall setting up plex permissions was a pita so really hoping I can salvage from the old install.<br />
<br />
Thanks<br />
paul]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>new666uk</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692656-24-4-reinstall-what-do-i-need-to-note-from-current-install-users-drives-permissions-etc</guid>
		</item>
		<item>
			<title><![CDATA[Can't Screen Grab or Share Screen after switching to PulseAudio on Kubuntu 26.04]]></title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692597-can-t-screen-grab-or-share-screen-after-switching-to-pulseaudio-on-kubuntu-26-04</link>
			<pubDate>Sun, 07 Jun 2026 00:22:59 GMT</pubDate>
			<description><![CDATA[Hi there, 
 
So I've upgraded from Kubuntu 25 to Kubuntu 26 a month ago. 
But when it booted up I noticed it couldn't send 5.1 sound though the...]]></description>
			<content:encoded><![CDATA[Hi there,<br />
<br />
So I've upgraded from Kubuntu 25 to Kubuntu 26 a month ago.<br />
But when it booted up I noticed it couldn't send 5.1 sound though the Toslink port on my motherboard.<br />
While digging, I found that PulseAudio had been replaced by Pipewire, and that Pipewire didn't support such profile through integrated motherboard ports, only through GPU outputs (like HDMI).<br />
Anyway, I changed it back to PulseAudio cause it worked fine for me and I do enjoy my surround sound. (While changing it I also noticed that PulseAudio now automatically up mixes stereo stream to 5.1 if selected as an output profile, it's excellent !)<br />
But now, if I try to record my screen with OBS or just share it on Discord, I get an error :<br />
<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(30 *  + 12px + 20px);">Failed to connect PipeWire context</pre>
</div>It's kind of becoming annoying, especially since I don't care about recording the sound, and even if I did, how can I get it to work while still using PulseAudio ?<br />
<br />
Here are my specs :<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_quote">
		<div class="quote_container">
			<div class="bbcode_quote_container b-icon b-icon__ldquo-l--gray"></div>
			
				<span style="font-family:monospace"><span style="color:#5454ff"><b>System:</b></span><br />
<span style="color:#5454ff"><b>Host:</b></span><span style="color:#000000"> MUTHER </span><span style="color:#5454ff"><b>Kernel:</b></span><span style="color:#000000"> 7.0.0-22-generic </span><span style="color:#5454ff"><b>arch:</b></span><span style="color:#000000"> x86_64 </span><span style="color:#5454ff"><b>bits:</b></span><span style="color:#000000"> 64</span><br />
<span style="color:#5454ff"><b>Desktop:</b></span><span style="color:#000000"> KDE Plasma </span><span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> 6.6.4 </span><span style="color:#5454ff"><b>Distro:</b></span><span style="color:#000000"> Kubuntu 26.04 LTS (Resolute Raccoon)</span><br />
<span style="color:#5454ff"><b>Machine:</b></span><br />
<span style="color:#5454ff"><b>Type:</b></span><span style="color:#000000"> Desktop </span><span style="color:#5454ff"><b>Mobo:</b></span><span style="color:#000000"> ASUSTeK </span><span style="color:#5454ff"><b>model:</b></span><span style="color:#000000"> ROG STRIX B450-F GAMING </span><span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> Rev 1.xx</span><br />
<span style="color:#5454ff"><b>serial:</b></span><span style="color:#000000"> &lt;superuser required&gt; </span><span style="color:#5454ff"><b>Firmware:</b></span><span style="color:#000000"> UEFI </span><span style="color:#5454ff"><b>vendor:</b></span><span style="color:#000000"> American Megatrends</span><br />
<span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> 3103 </span><span style="color:#5454ff"><b>date:</b></span><span style="color:#000000"> 06/17/2020</span><br />
<span style="color:#5454ff"><b>CPU:</b></span><br />
<span style="color:#5454ff"><b>Info:</b></span><span style="color:#000000"> 8-core </span><span style="color:#5454ff"><b>model:</b></span><span style="color:#000000"> AMD Ryzen 7 3700X </span><span style="color:#5454ff"><b>bits:</b></span><span style="color:#000000"> 64 </span><span style="color:#5454ff"><b>type:</b></span><span style="color:#000000"> MT MCP </span><span style="color:#5454ff"><b>cache:</b></span><span style="color:#5454ff"><b>L2:</b></span><span style="color:#000000"> 4 MiB</span><br />
<span style="color:#5454ff"><b>Speed (MHz):</b></span><span style="color:#5454ff"><b>avg:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>min/max:</b></span><span style="color:#000000"> 2200/4549 </span><span style="color:#5454ff"><b>cores:</b></span><span style="color:#5454ff"><b>1:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>2:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>3:</b></span><span style="color:#000000"> 3811</span><br />
<span style="color:#5454ff"><b>4:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>5:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>6:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>7:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>8:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>9:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>10:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>11:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>12:</b></span><span style="color:#000000"> 3811</span><br />
<span style="color:#5454ff"><b>13:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>14:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>15:</b></span><span style="color:#000000"> 3811 </span><span style="color:#5454ff"><b>16:</b></span><span style="color:#000000"> 3811</span><br />
<span style="color:#5454ff"><b>Graphics:</b></span><br />
<span style="color:#5454ff"><b>Device-1:</b></span><span style="color:#000000"> NVIDIA GP106 [GeForce GTX 1060 6GB] </span><span style="color:#5454ff"><b>driver:</b></span><span style="color:#000000"> nvidia </span><span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> 580.159.03</span><br />
<span style="color:#5454ff"><b>Device-2:</b></span><span style="color:#000000"> Logitech Webcam C300 </span><span style="color:#5454ff"><b>driver:</b></span><span style="color:#000000"> snd-usb-audio,uvcvideo </span><span style="color:#5454ff"><b>type:</b></span><span style="color:#000000"> USB</span><br />
<span style="color:#5454ff"><b>Display:</b></span><span style="color:#000000"> wayland </span><span style="color:#5454ff"><b>server:</b></span><span style="color:#000000"> X.org </span><span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> 1.21.1.22 </span><span style="color:#5454ff"><b>with:</b></span><span style="color:#000000"> Xwayland </span><span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> 24.1.10</span><br />
<span style="color:#5454ff"><b>compositor:</b></span><span style="color:#000000"> kwin_wayland </span><span style="color:#5454ff"><b>driver:</b></span><span style="color:#5454ff"><b>X:</b></span><span style="color:#5454ff"><b>loaded:</b></span><span style="color:#000000"> nvidia</span><br />
<span style="color:#5454ff"><b>unloaded:</b></span><span style="color:#000000"> fbdev,modesetting,nouveau,vesa </span><span style="color:#5454ff"><b>gpu:</b></span><span style="color:#000000"> nvidia,nvidia-nvswitch</span><br />
<span style="color:#5454ff"><b>resolution:</b></span><span style="color:#5454ff"><b>1:</b></span><span style="color:#000000"> 1024x768~60Hz </span><span style="color:#5454ff"><b>2:</b></span><span style="color:#000000"> 1680x1050~60Hz </span><span style="color:#5454ff"><b>3:</b></span><span style="color:#000000"> 1920x1080~60Hz</span><br />
<span style="color:#5454ff"><b>API:</b></span><span style="color:#000000"> EGL </span><span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> 1.5 </span><span style="color:#5454ff"><b>drivers:</b></span><span style="color:#000000"> nvidia,swrast</span><br />
<span style="color:#5454ff"><b>platforms:</b></span><span style="color:#000000"> gbm,wayland,x11,surfaceless,device</span><br />
<span style="color:#5454ff"><b>API:</b></span><span style="color:#000000"> OpenGL </span><span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> 4.6.0 </span><span style="color:#5454ff"><b>compat-v:</b></span><span style="color:#000000"> 4.5 </span><span style="color:#5454ff"><b>vendor:</b></span><span style="color:#000000"> nvidia mesa </span><span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> 580.159.03</span><br />
<span style="color:#5454ff"><b>renderer:</b></span><span style="color:#000000"> NVIDIA GeForce GTX 1060 6GB/PCIe/SSE2</span><br />
<span style="color:#5454ff"><b>API:</b></span><span style="color:#000000"> Vulkan </span><span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> 1.4.341 </span><span style="color:#5454ff"><b>drivers:</b></span><span style="color:#000000"> nvidia,llvmpipe </span><span style="color:#5454ff"><b>surfaces:</b></span><span style="color:#000000"> N/A</span><br />
<span style="color:#5454ff"><b>Info:</b></span><span style="color:#5454ff"><b>Tools:</b></span><span style="color:#5454ff"><b>api:</b></span><span style="color:#000000"> clinfo, eglinfo, glxinfo, vulkaninfo</span><br />
<span style="color:#5454ff"><b>de:</b></span><span style="color:#000000"> kscreen-console,kscreen-doctor </span><span style="color:#5454ff"><b>gpu:</b></span><span style="color:#000000"> nvidia-settings,nvidia-smi</span><br />
<span style="color:#5454ff"><b>wl:</b></span><span style="color:#000000"> wayland-info </span><span style="color:#5454ff"><b>x11:</b></span><span style="color:#000000"> xdriinfo, xdpyinfo, xprop, xrandr</span><br />
<span style="color:#5454ff"><b>Audio:</b></span><br />
<span style="color:#5454ff"><b>Device-1:</b></span><span style="color:#000000"> NVIDIA GP106 High Definition Audio </span><span style="color:#5454ff"><b>driver:</b></span><span style="color:#000000"> snd_hda_intel</span><br />
<span style="color:#5454ff"><b>Device-2:</b></span><span style="color:#000000"> Advanced Micro Devices [AMD] Starship/Matisse HD Audio</span><br />
<span style="color:#5454ff"><b>driver:</b></span><span style="color:#000000"> snd_hda_intel</span><br />
<span style="color:#5454ff"><b>Device-3:</b></span><span style="color:#000000"> Logitech Webcam C300 </span><span style="color:#5454ff"><b>driver:</b></span><span style="color:#000000"> snd-usb-audio,uvcvideo </span><span style="color:#5454ff"><b>type:</b></span><span style="color:#000000"> USB</span><br />
<span style="color:#5454ff"><b>API:</b></span><span style="color:#000000"> ALSA </span><span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> k7.0.0-22-generic </span><span style="color:#5454ff"><b>status:</b></span><span style="color:#000000"> kernel-api</span><br />
<span style="color:#5454ff"><b>Server-1:</b></span><span style="color:#000000"> PulseAudio </span><span style="color:#5454ff"><b>v:</b></span><span style="color:#000000"> 17.0 </span><span style="color:#5454ff"><b>status:</b></span><span style="color:#000000"> active</span></span>
			
		</div>
	</div>
</div>I've been looking around for a couple of hours, but can't seem to find anyone with a similar issue...<br />
I'm not really new to Kubuntu, but I kinda feel like it's an easy problem, and I'm just not looking at it the right way.<br />
<br />
Thanks in advance !<br />
<br />
Natsukian<br />
​]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>Natsukian</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692597-can-t-screen-grab-or-share-screen-after-switching-to-pulseaudio-on-kubuntu-26-04</guid>
		</item>
		<item>
			<title>Discover stopped working</title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692568-discover-stopped-working</link>
			<pubDate>Fri, 05 Jun 2026 15:07:56 GMT</pubDate>
			<description><![CDATA[Here's what I'm working with: 
 
Operating System: Kubuntu 26.04 LTS 
KDE Plasma Version: 6.6.4 
KDE Frameworks Version: 6.24.0 
Qt Version: 6.10.2...]]></description>
			<content:encoded><![CDATA[Here's what I'm working with:<br />
<br />
Operating System: Kubuntu 26.04 LTS<br />
KDE Plasma Version: 6.6.4<br />
KDE Frameworks Version: 6.24.0<br />
Qt Version: 6.10.2<br />
Kernel Version: 7.0.0-22-generic (64-bit)<br />
Graphics Platform: Wayland<br />
Processors: 6 × Intel® Core™ i5-9500 CPU @ 3.00GHz<br />
Memory: 32 GiB of RAM (31.1 GiB usable)<br />
Graphics Processor: Intel® UHD Graphics 630<br />
<br />
Discover suddenly crashed and won't run again. I've tried reinstalling from the Konsole, but that didn't help.<br />
<br />
When I run plasma-discover from Konsole, this is what I get:<br />
<br />
<span style="background-color:#e0e0e0;font-family:Monospace">org.kde.plasma.libdiscover: OdrsReviewsBackend: Fetch ratings: true<br />
adding empty sources model QStandardItemModel(0x5fb02d13fde0)<br />
qrc:/qt/qml/org/kde/discover/qml/DiscoverWindow.qml:119:5: QML Shortcut: Shortcut: Only binding to one of mul<br />
tiple key bindings associated with 15. Use 'sequences: [ &lt;key&gt; ]' to bind to all of them.<br />
render glyph failed err=62 face=0x5fb02d4c2dd0, glyph=54<br />
KCrash: Application 'plasma-discover' crashing... crashRecursionCounter = 2<br />
Segmentation fault (core dumped) plasma-discover</span><br />
<br />
I can force Discover to run using sudo plasma-discover but I'd rather fix it so works properly. Any ideas?<br />
<br />
​<br />
<br />
​]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>TyrianRoseViolet</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692568-discover-stopped-working</guid>
		</item>
		<item>
			<title>Questions about restoring an install to a new encrypted install using Timeshift</title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692559-questions-about-restoring-an-install-to-a-new-encrypted-install-using-timeshift</link>
			<pubDate>Fri, 05 Jun 2026 11:08:08 GMT</pubDate>
			<description><![CDATA[Rather than starting a new thread, I'll piggyback off this one. 
I've read, and see it confirmed here, that post-installation encryption is possible...]]></description>
			<content:encoded><![CDATA[Rather than starting a new thread, I'll piggyback off this one.<br />
I've read, and see it confirmed here, that post-installation encryption is possible but not worth the hassle, but I just wanted to bounce an idea off the experts.<br />
I have both Timeshift &amp; Rescuezilla images/backups.<br />
If I install fresh from scratch, and I restore an image from Timeshift or the full image from rescuezilla, does the encryption stick, or does the recovered data stay in its original unencrypted form?]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>Elliot Alderson</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692559-questions-about-restoring-an-install-to-a-new-encrypted-install-using-timeshift</guid>
		</item>
		<item>
			<title>External drive size issues</title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692521-external-drive-size-issues</link>
			<pubDate>Wed, 03 Jun 2026 13:09:06 GMT</pubDate>
			<description><![CDATA[So a picture is worth a 1000 words... but I can't seem to get the screenshot loaded here... so the issue is I have an 8TB external hard drive, in KDE...]]></description>
			<content:encoded><![CDATA[So a picture is worth a 1000 words... but I can't seem to get the screenshot loaded here... so the issue is I have an 8TB external hard drive, in KDE Partition manager it shows 7.28TB but down lower in the window it shows 7.28Tb with 21.61GB used and when I format the drive the system only sees about 1.3TB of the 7.28. This is a drive I have been using for Timeshift backups. While my system was Kubuntu 24.04. I just recently upgraded to 26.04 and went to run Timeshift when I started running into a series of odd issues. The biggest is Timeshift would fail to complete the back up.<br />
<br />
[<span style="font-family:monospace"><span style="color:#000000">No Pain~]$ df -h</span><br />
<span style="color:#000000">Filesystem Size Used Avail Use% Mounted on</span><br />
<span style="color:#000000">tmpfs 3.1G 3.4M 3.1G 1% /run</span><br />
<span style="color:#000000">/dev/nvme0n1p1 458G 21G 432G 5% /</span><br />
<span style="color:#000000">tmpfs 16G 344M 15G 3% /dev/shm</span><br />
<span style="color:#000000">efivarfs 128K 66K 58K 54% /sys/firmware/efi/efivars</span><br />
<span style="color:#000000">none 1.0M 0 1.0M 0% /run/credentials/systemd-journald.service</span><br />
<span style="color:#000000">none 1.0M 0 1.0M 0% /run/credentials/systemd-resolved.service</span><br />
<span style="color:#000000">/dev/nvme0n1p3 470G 4.7G 442G 2% /Xtras</span><br />
<span style="color:#000000">/dev/nvme0n1p1 458G 21G 432G 5% /swap</span><br />
<span style="color:#000000">tmpfs 16G 36M 16G 1% /tmp</span><br />
<span style="color:#000000">/dev/nvme0n1p4 8.6G 8.2M 8.6G 1% /boot/efi</span><br />
<span style="color:#000000">/dev/nvme1n1p1 3.7T 1.7T 1.9T 48% /home</span><br />
<span style="color:#000000">tmpfs 3.1G 5.4M 3.1G 1% /run/user/1000</span><br />
<b><span style="color:#000000">/dev/mapper/sdb1_crypt 1.3T 8.9M 1.3T 1% /run/timeshift/50367/backup</span><br />
<span style="color:#000000">/dev/sdh1 1.3T 2.1M 1.2T 1% /run/media/ian/f6d21463-bac6-4b76-88c7-90128a67c5b9</span></b></span><br />
<br />
​I tried doing a complete shred on the drive ( that was a 2.5 day evolution ) to see if that would clear things up and nothing. I have tried using different file systems and nothing seems to regain the total usable disk space. Don't know what to do now. Ideas?]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>GlockG20</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692521-external-drive-size-issues</guid>
		</item>
		<item>
			<title>Kubuntu 26.04 X11 black screen with wire mouse pointer and no session, just back to login screen</title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692516-kubuntu-26-04-x11-black-screen-with-wire-mouse-pointer-and-no-session-just-back-to-login-screen</link>
			<pubDate>Wed, 03 Jun 2026 10:31:40 GMT</pubDate>
			<description>After upgrading from 25.10 to 26.04, whenever I try to login to x11 with 26.04 I just get a black screen with a wire mouse pointer which hangs for a...</description>
			<content:encoded><![CDATA[After upgrading from 25.10 to 26.04, whenever I try to login to x11 with 26.04 I just get a black screen with a wire mouse pointer which hangs for a couple of minutes then it returns to the login screen.<br />
<br />
I have tried everything to get it working even reinstalling the whole desktop with<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(30 *  + 12px + 20px);">sudo apt --purge autoremove kubuntu-desktop plasma-workspace plasma-session-x11 plasma-session-wayland
sudo apt install kubuntu-desktop plasma-workspace plasma-session-x11 plasma-session-wayland -y</pre>
</div><br />
But nothing is helping and when I come back from X11 to wayland all my panels, i.e. taskbars are gone, so I have to reboot the system to get wayland back to it's current state.<br />
<br />
I need to test some issues I'm having with wayland and I know my system was working perfectly with X11 on 25.10, so need to get back to x11 for a comparison to help isolate the cause.<br />
<br />
Also certain tools like lact just simply do not work with wayland, i.e. it cannot open a window and I do not pretend to understand why so please don't interrogate me over that.<br />
<br />
Obviously all my drivers are up to date, etc.<br />
<br />
<b>EDIT:</b> I forgot to mention that I have also tried adding a new test user to see if the problems are local  to me or system wide and the issue does happen to the test user too.<br />
<br />

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(30 *  + 12px + 20px);">Operating System: Kubuntu 26.04 LTS
KDE Plasma Version: 6.6.4
KDE Frameworks Version: 6.24.0
Qt Version: 6.10.2
Kernel Version: 7.0.0-22-generic (64-bit)
Graphics Platform: Wayland
Processors: 16 × AMD Ryzen 7 9800X3D 8-Core Processor
Memory: 64 GiB of RAM (60.2 GiB usable)
Graphics Processor 1: AMD Radeon RX 9070 XT
Graphics Processor 2: AMD Ryzen 7 9800X3D 8-Core Processor
Manufacturer: Micro-Star International Co., Ltd.
Product Name: MS-7E84
System Version: 1.0​</pre>
</div>]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>tux fan</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692516-kubuntu-26-04-x11-black-screen-with-wire-mouse-pointer-and-no-session-just-back-to-login-screen</guid>
		</item>
		<item>
			<title>NVIDIA and Plex server issue. Graphical corruption</title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692474-nvidia-and-plex-server-issue-graphical-corruption</link>
			<pubDate>Sun, 31 May 2026 17:17:16 GMT</pubDate>
			<description>Sigh, I had a good run with Kubuntu generally working ok but a couple of weeks ago following a routine bunch of updates I had issues with Plex server...</description>
			<content:encoded><![CDATA[Sigh, I had a good run with Kubuntu generally working ok but a couple of weeks ago following a routine bunch of updates I had issues with Plex server not being seen (client and server are on same box). The media locations are all still owned by Plex so I'm not expecting a permission issue and I can access them to playback in other apps.<br />
<br />
Unable to fix Plex, I tried to watch a movie via VLC having switched the display output to 4k as I usually do. It ran poorly with a lot of stutter leading me to look to nvidia. In driver manager, I've switched between driver version 530 (tested) and 580 (the latest supporting my 1050 GPU). Weirdly Plex seems to be able to connect to the media drives if I use nvidia v530 but not 580 but runs poorly (as does VLC in both).<br />
<br />
Perplexed by the odd nvidia / Plex, I've purged and reinstalled nvidia driver 580 and still have the same issue. I suspect I'm no longer outputting via the GPU, only the onboard GFX as CPU usage spikes to 70 - 99% on playback. The GPU is physically installed and connected. I'm pretty sure I used 
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(30 *  + 12px + 20px);">nvidia-smi</pre>
</div> to check it's seen.Via the nvidia app I've set it to on demand and performance (on separate boot ups) but I note that the app doesn't show the menu options in the left of the image below (not mine, just illustrative)<br />
<br />
<br />
​<a href="filedata/fetch?id=692476&amp;d=1780247263&amp;type=thumb" class="bbcode-attachment"  ><img alt="Click image for larger version  Name:	image.png Views:	90 Size:	213.8 KB ID:	692476" title="image.png" data-attachmentid="692476" width="639" height="314" data-align="none" border="0" src="filedata/fetch?id=692476&amp;d=1780247263&amp;type=thumb" data-fullsize-url="filedata/fetch?id=692476&amp;d=1780247263&amp;type=thumb" data-thumb-url="filedata/fetch?id=692476&amp;d=1780247263&amp;type=thumb" data-title="" data-caption="image.png" class="bbcode-attachment thumbnail js-lightbox bbcode-attachment--lightbox" /></a>​<br />
<br />
<br />
In a moment of &quot;what can I try next?&quot;, I installed nvidia 590 driver but upon reboot now I get no display output at all, just a &quot;no HDMI input&quot; message from the display itself. That was clearly my biggest error. I'm going off memory for a lot of what I did so bear with. I think I used 
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(30 *  + 12px + 20px);">sudo apt update
sudo apt install nvidia-driver-590​</pre>
</div> to install 590.<br />
<br />
<br />
<br />
Now, with no output at all, I've tried to use both Escape and Shift (on separate attempts) to log into Grub on boot in an effort to revert the driver back to nvidia v580 but still no output detected on the display.<br />
<br />
<br />
Recap in brief:<br />
4k playback is choppy in VLC and Plex<br />
GPU may not be in use<br />
Nvidia driver 580 seems to coincide with an issue in Plex client not seeing the server<br />
Nvidia driver 530 results in normal Plex access<br />
Both 530 and 580 have stuttering in 4k media play<br />
<br />
<br />
I only tend to use the machine at weekends as a media box to watch movies hence the issue has been protracted over a couple of weeks.<br />
<br />
Running Kubuntu 24.04 LTS.<br />
GPU is a 1050ti and I'm using nvidia driver version 530 and 580.The 1050 GPU is only supported upto driver 580 I (now) believe.<br />
<br />
<br />
So, are my options to torch it and reinstall 24.04 from an SD card?<br />
<br />
Apologies for the long read and thanks in advance to anyone how can advise.]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>new666uk</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692474-nvidia-and-plex-server-issue-graphical-corruption</guid>
		</item>
		<item>
			<title>Black Screen After Loging into my wayland session</title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692422-black-screen-after-loging-into-my-wayland-session</link>
			<pubDate>Thu, 28 May 2026 12:12:04 GMT</pubDate>
			<description><![CDATA[I've been using Kubuntu for some time now. But recently I've been experiencing black screens without my cursor whenever i logged into my wayland...]]></description>
			<content:encoded><![CDATA[I've been using Kubuntu for some time now. But recently I've been experiencing black screens without my cursor whenever i logged into my wayland session. My X11 session still works nonetheless.<br />
<br />
Specifications:<ul><li>KDE Plasma ver: 6.3.4</li>
<li>KDE Frameworks ver: 6.12.0</li>
<li>Qt ver: 6.8.3</li>
<li>Kernel ver: 6.14.0-15-generic(64bit)</li>
<li>Graphics platform: X11</li>
</ul>]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>BarelyAlive</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692422-black-screen-after-loging-into-my-wayland-session</guid>
		</item>
		<item>
			<title>Help me with fixing (new kubuntu user)</title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692412-help-me-with-fixing-new-kubuntu-user</link>
			<pubDate>Thu, 28 May 2026 05:06:34 GMT</pubDate>
			<description>Hello, i am new to Kubuntu, and i have noticed that when my pc falls into sleep mode after some period of inactivity, usually after 30 minutes, then...</description>
			<content:encoded><![CDATA[<span style="font-size:16px">Hello, i am new to Kubuntu, and i have noticed that when my pc falls into sleep mode after some period of inactivity, usually after 30 minutes, then when i wake it up by pressing on the mouse, and i am met with the login screen, but then my keyboard does not work at all, my numlock is automatically on and does not turn off even if i press on it, i just simply cannot type in my password, keyboard is on but does not react at all when i press But my mouse works and i can move it around and even click and it works, i can click to go back into sleep mode by clicking it which does that, or to switch users which leads to a freeze, the solution i found is that i usually hard restard by holding the power off/on button and only then it starts into kubuntu as usual, but i do not want to hard restart every single time after leaving my laptop for more than 30 minutes. i had this problem as soon as i booted into Kubuntu the first time (yesterday) so i have not touched any important files or anything, it was like this from the start.  <br />
<br />
i dual booted linux, i followed every instruction on youtube, seems like i did everything right. But this problem is weird. If anyone had a similar problem and fixed it, or if someone more experienced knows what this is caused by and how to fix it i would be very  thankful. </span>]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>kbuntuiebwen74857263</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692412-help-me-with-fixing-new-kubuntu-user</guid>
		</item>
		<item>
			<title>libkf6activities Package</title>
			<link>https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692332-libkf6activities-package</link>
			<pubDate>Mon, 25 May 2026 00:10:59 GMT</pubDate>
			<description><![CDATA[So I'm trying to install libkf6activities and apt is not finding it at all. Can anyone give me a package? (OS is Kubuntu 26.04 LTS)]]></description>
			<content:encoded><![CDATA[So I'm trying to install libkf6activities and apt is not finding it at all. Can anyone give me a package? (OS is Kubuntu 26.04 LTS)]]></content:encoded>
			<category domain="https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy">Help the New Guy</category>
			<dc:creator>cchipdive</dc:creator>
			<guid isPermaLink="true">https://www.kubuntuforums.net/forum/newbie-support/help-the-new-guy/692332-libkf6activities-package</guid>
		</item>
	</channel>
</rss>
