<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Linux Lite Forums - All Forums]]></title>
		<link>https://www.linuxliteos.com/forums/</link>
		<description><![CDATA[Linux Lite Forums - https://www.linuxliteos.com/forums]]></description>
		<pubDate>Thu, 20 Aug 2026 08:46:37 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[suggestion: more intuitive search button(s) for website/forums]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9958</link>
			<pubDate>Tue, 18 Aug 2026 20:29:29 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=167">LL-user</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9958</guid>
			<description><![CDATA[Hi Jerry &amp; team,<br />
<br />
I'd like to suggest an improvement for the website/forums.<br />
<br />
Currently to search within the forums the user need to go to the top and choose "Search" amongst the buttons to access different sections of the website. Not only is such a search button usually meant for searching a website, but in our case it is also not obvious that it is actually meant to search the forums! And after selecting the forums there is nowhere an obvious search field usually found within forums.<br />
<br />
Therefore I'd like to suggest to<br />
* convert the current search button on top to a button to search the website<br />
* to add somewhere within the forums more prominently a button to search the forums<br />
<br />
It could look like this (if the code allowed such implementation that is of course):<br />
<a href="https://postimg.cc/5HF2hfkD" target="_blank" rel="noopener" class="mycode_url"><img src="https://i.postimg.cc/5HF2hfkD/forums-search.png" loading="lazy"  alt="[Image: forums-search.png]" class="mycode_img img-responsive" /></a>]]></description>
			<content:encoded><![CDATA[Hi Jerry &amp; team,<br />
<br />
I'd like to suggest an improvement for the website/forums.<br />
<br />
Currently to search within the forums the user need to go to the top and choose "Search" amongst the buttons to access different sections of the website. Not only is such a search button usually meant for searching a website, but in our case it is also not obvious that it is actually meant to search the forums! And after selecting the forums there is nowhere an obvious search field usually found within forums.<br />
<br />
Therefore I'd like to suggest to<br />
* convert the current search button on top to a button to search the website<br />
* to add somewhere within the forums more prominently a button to search the forums<br />
<br />
It could look like this (if the code allowed such implementation that is of course):<br />
<a href="https://postimg.cc/5HF2hfkD" target="_blank" rel="noopener" class="mycode_url"><img src="https://i.postimg.cc/5HF2hfkD/forums-search.png" loading="lazy"  alt="[Image: forums-search.png]" class="mycode_img img-responsive" /></a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[logrotate.service fails due to error in file cloud-init-base]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9957</link>
			<pubDate>Tue, 18 Aug 2026 14:47:10 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=167">LL-user</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9957</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code># systemctl status logrotate
× logrotate.service - Rotate log files
Loaded: loaded (/usr/lib/systemd/system/logrotate.service; static)
Active: failed (Result: exit-code) since ...
* Invocation: *********************
TriggeredBy: ● logrotate.timer
Docs: man:logrotate(8)
man:logrotate.conf(5)
Process: 364821 ExecStart=/usr/sbin/logrotate /etc/logrotate.conf (code=exited, status=1/FAILURE)
Main PID: 364821 (code=exited, status=1/FAILURE)
Mem peak: 3M
CPU: 60ms

    systemd[1]: Starting logrotate.service - Rotate log files...
    logrotate[364821]: error: cloud-init-base:1 duplicate log entry for /var/log/cloud-init*.log
    logrotate[364821]: error: found error in file cloud-init-base, skipping
    systemd[1]: logrotate.service: Main process exited, code=exited, status=1/FAILURE
    systemd[1]: logrotate.service: Failed with result 'exit-code'.
    systemd[1]: Failed to start logrotate.service - Rotate log files.</code></div></div><br />
So, the logrotate configuration file named <span style="font-weight: bold;" class="mycode_b">cloud-init-base</span> has a <span style="text-decoration: underline;" class="mycode_u">duplicate log rotation entry</span> for <span style="font-weight: bold;" class="mycode_b">/var/log/cloud-init*.log</span>.<br />
<br />
The path of addressing this failure depends on the answer to the question whether <span style="font-weight: bold;" class="mycode_b">cloud-init</span> needs to/should be available in Linux Lite? <span style="font-weight: bold;" class="mycode_b">cloud-init</span> is an initialization system designed for cloud instances (AWS EC2, Azure VMs, Google Cloud, OpenStack, etc.).<br />
<br />
For people not using cloud-init functionality (I expect it to be the vast majority of Linux Lite users), the resolution can be to just remove <span style="font-weight: bold;" class="mycode_b">cloud-init</span>:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sudo apt purge cloud-init -y &amp;&amp; sudo apt autoremove -y
sudo rm -rf /etc/cloud /etc/logrotate.d/cloud-init-base</code></div></div><br />
Otherwise, the duplicate logrotate entry needed to be fixed.<br />
<br />
Same seems to apply to the next version of Linux Lite 8.2 - remove or fix <img src="https://www.linuxliteos.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code># systemctl status logrotate
× logrotate.service - Rotate log files
Loaded: loaded (/usr/lib/systemd/system/logrotate.service; static)
Active: failed (Result: exit-code) since ...
* Invocation: *********************
TriggeredBy: ● logrotate.timer
Docs: man:logrotate(8)
man:logrotate.conf(5)
Process: 364821 ExecStart=/usr/sbin/logrotate /etc/logrotate.conf (code=exited, status=1/FAILURE)
Main PID: 364821 (code=exited, status=1/FAILURE)
Mem peak: 3M
CPU: 60ms

    systemd[1]: Starting logrotate.service - Rotate log files...
    logrotate[364821]: error: cloud-init-base:1 duplicate log entry for /var/log/cloud-init*.log
    logrotate[364821]: error: found error in file cloud-init-base, skipping
    systemd[1]: logrotate.service: Main process exited, code=exited, status=1/FAILURE
    systemd[1]: logrotate.service: Failed with result 'exit-code'.
    systemd[1]: Failed to start logrotate.service - Rotate log files.</code></div></div><br />
So, the logrotate configuration file named <span style="font-weight: bold;" class="mycode_b">cloud-init-base</span> has a <span style="text-decoration: underline;" class="mycode_u">duplicate log rotation entry</span> for <span style="font-weight: bold;" class="mycode_b">/var/log/cloud-init*.log</span>.<br />
<br />
The path of addressing this failure depends on the answer to the question whether <span style="font-weight: bold;" class="mycode_b">cloud-init</span> needs to/should be available in Linux Lite? <span style="font-weight: bold;" class="mycode_b">cloud-init</span> is an initialization system designed for cloud instances (AWS EC2, Azure VMs, Google Cloud, OpenStack, etc.).<br />
<br />
For people not using cloud-init functionality (I expect it to be the vast majority of Linux Lite users), the resolution can be to just remove <span style="font-weight: bold;" class="mycode_b">cloud-init</span>:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sudo apt purge cloud-init -y &amp;&amp; sudo apt autoremove -y
sudo rm -rf /etc/cloud /etc/logrotate.d/cloud-init-base</code></div></div><br />
Otherwise, the duplicate logrotate entry needed to be fixed.<br />
<br />
Same seems to apply to the next version of Linux Lite 8.2 - remove or fix <img src="https://www.linuxliteos.com/forums/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Linux Lite 8.0 custom kernel 7.1.0 - broadcom-sta-dkms]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9955</link>
			<pubDate>Fri, 14 Aug 2026 17:03:38 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=2790">stevef</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9955</guid>
			<description><![CDATA[With previous versions of LL, updates to kernel are familiar events requiring reboots.<br />
On a potato Linux Lite 8 system (which has been updated as suggested by the Linux Lite Update tray app), noted that no update/upgrade had suggested a reboot. <br />
<br />
Opened Lite Kernel Manager which indicated 7.1.0 was available.<br />
<br />
Is this the correct mechanism for a user to keep track of kernel updates or have I missed an indicator somewhere ?<br />
<br />
In Lite Kernel Manager, clicked the 'Install From Repository', this downloaded the update and started an install process which failed.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Fetching package list from repo…
  headers : linux-headers-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb
  image  : linux-image-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb

Downloading linux-headers-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb
  Downloaded 10.8 MB (6.2 MB/s avg)
Downloading linux-image-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb
  Downloaded 123.6 MB (6.3 MB/s avg)

Download complete. Requesting root access…

Installing: 7.1.0-linuxlite

==&gt; Installing kernel headers
Selecting previously unselected package linux-headers-7.1.0-linuxlite.
(Reading database… 265915 files and directories currently installed.)
Preparing to unpack …/linux-headers-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb…
Unpacking linux-headers-7.1.0-linuxlite (7.1.0-gea1dc2a2fe60-1)…
Setting up linux-headers-7.1.0-linuxlite (7.1.0-gea1dc2a2fe60-1)…
==&gt; Installing kernel image
Selecting previously unselected package linux-image-7.1.0-linuxlite.
(Reading database… 273789 files and directories currently installed.)
Preparing to unpack …/linux-image-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb…
Unpacking linux-image-7.1.0-linuxlite (7.1.0-gea1dc2a2fe60-1)…
Setting up linux-image-7.1.0-linuxlite (7.1.0-gea1dc2a2fe60-1)…
Sign command: /usr/bin/kmodsign
Signing key: /var/lib/shim-signed/mok/MOK.priv
Public certificate (MOK): /var/lib/shim-signed/mok/MOK.der

Autoinstall of module broadcom-sta/6.30.223.271 for kernel 7.1.0-linuxlite (x86_64)
Building module(s)...........(bad exit status: 2)
Failed command:
make -j2 KERNELRELEASE=7.1.0-linuxlite KVER=7.1.0-linuxlite

Error! Bad return status for module build on kernel: 7.1.0-linuxlite (x86_64)
Consult /var/lib/dkms/broadcom-sta/6.30.223.271/build/make.log for more information.

Autoinstall on 7.1.0-linuxlite failed for module(s) broadcom-sta(10).

Error! One or more modules failed to install during autoinstall.
Refer to previous errors for more information.
run-parts: /etc/kernel/postinst.d/dkms exited with return code 1
update-initramfs: Generating /boot/initrd.img-7.1.0-linuxlite
Sourcing file `/etc/default/grub'
Generating grub configuration file ...
Found background: /boot/grub_linux_lite.png
Found background image: /boot/grub_linux_lite.png
Found linux image: /boot/vmlinuz-7.1.0-linuxlite
Found initrd image: /boot/initrd.img-7.1.0-linuxlite
Found linux image: /boot/vmlinuz-7.0.0-linuxlite
Found initrd image: /boot/initrd.img-7.0.0-linuxlite
Warning: os-prober will not be executed to detect other bootable partitions.
Systems on them will not be added to the GRUB boot configuration.
Check GRUB_DISABLE_OS_PROBER documentation entry.
Adding boot menu entry for UEFI Firmware Settings ...
done
dpkg: error processing package linux-image-7.1.0-linuxlite (--install):
 old linux-image-7.1.0-linuxlite package postinst maintainer script subprocess failed with exit status 1
Errors were encountered while processing:
 linux-image-7.1.0-linuxlite

Installation failed. Your current kernel is unaffected.</code></div></div><br />
Had a quick look through the links to the Lite custom kernel but couldn't find anything on this or release notes about 7.1.0.  I realise this is new ground. Let me know if any further information is required.]]></description>
			<content:encoded><![CDATA[With previous versions of LL, updates to kernel are familiar events requiring reboots.<br />
On a potato Linux Lite 8 system (which has been updated as suggested by the Linux Lite Update tray app), noted that no update/upgrade had suggested a reboot. <br />
<br />
Opened Lite Kernel Manager which indicated 7.1.0 was available.<br />
<br />
Is this the correct mechanism for a user to keep track of kernel updates or have I missed an indicator somewhere ?<br />
<br />
In Lite Kernel Manager, clicked the 'Install From Repository', this downloaded the update and started an install process which failed.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Fetching package list from repo…
  headers : linux-headers-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb
  image  : linux-image-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb

Downloading linux-headers-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb
  Downloaded 10.8 MB (6.2 MB/s avg)
Downloading linux-image-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb
  Downloaded 123.6 MB (6.3 MB/s avg)

Download complete. Requesting root access…

Installing: 7.1.0-linuxlite

==&gt; Installing kernel headers
Selecting previously unselected package linux-headers-7.1.0-linuxlite.
(Reading database… 265915 files and directories currently installed.)
Preparing to unpack …/linux-headers-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb…
Unpacking linux-headers-7.1.0-linuxlite (7.1.0-gea1dc2a2fe60-1)…
Setting up linux-headers-7.1.0-linuxlite (7.1.0-gea1dc2a2fe60-1)…
==&gt; Installing kernel image
Selecting previously unselected package linux-image-7.1.0-linuxlite.
(Reading database… 273789 files and directories currently installed.)
Preparing to unpack …/linux-image-7.1.0-linuxlite_7.1.0-gea1dc2a2fe60-1_amd64.deb…
Unpacking linux-image-7.1.0-linuxlite (7.1.0-gea1dc2a2fe60-1)…
Setting up linux-image-7.1.0-linuxlite (7.1.0-gea1dc2a2fe60-1)…
Sign command: /usr/bin/kmodsign
Signing key: /var/lib/shim-signed/mok/MOK.priv
Public certificate (MOK): /var/lib/shim-signed/mok/MOK.der

Autoinstall of module broadcom-sta/6.30.223.271 for kernel 7.1.0-linuxlite (x86_64)
Building module(s)...........(bad exit status: 2)
Failed command:
make -j2 KERNELRELEASE=7.1.0-linuxlite KVER=7.1.0-linuxlite

Error! Bad return status for module build on kernel: 7.1.0-linuxlite (x86_64)
Consult /var/lib/dkms/broadcom-sta/6.30.223.271/build/make.log for more information.

Autoinstall on 7.1.0-linuxlite failed for module(s) broadcom-sta(10).

Error! One or more modules failed to install during autoinstall.
Refer to previous errors for more information.
run-parts: /etc/kernel/postinst.d/dkms exited with return code 1
update-initramfs: Generating /boot/initrd.img-7.1.0-linuxlite
Sourcing file `/etc/default/grub'
Generating grub configuration file ...
Found background: /boot/grub_linux_lite.png
Found background image: /boot/grub_linux_lite.png
Found linux image: /boot/vmlinuz-7.1.0-linuxlite
Found initrd image: /boot/initrd.img-7.1.0-linuxlite
Found linux image: /boot/vmlinuz-7.0.0-linuxlite
Found initrd image: /boot/initrd.img-7.0.0-linuxlite
Warning: os-prober will not be executed to detect other bootable partitions.
Systems on them will not be added to the GRUB boot configuration.
Check GRUB_DISABLE_OS_PROBER documentation entry.
Adding boot menu entry for UEFI Firmware Settings ...
done
dpkg: error processing package linux-image-7.1.0-linuxlite (--install):
 old linux-image-7.1.0-linuxlite package postinst maintainer script subprocess failed with exit status 1
Errors were encountered while processing:
 linux-image-7.1.0-linuxlite

Installation failed. Your current kernel is unaffected.</code></div></div><br />
Had a quick look through the links to the Lite custom kernel but couldn't find anything on this or release notes about 7.1.0.  I realise this is new ground. Let me know if any further information is required.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Install Updates Error Log - Chrome NO_PUBKEY and PPA (thopiekar)]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9953</link>
			<pubDate>Wed, 12 Aug 2026 14:23:31 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=8456">VersaNeolith</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9953</guid>
			<description><![CDATA[============ Log ===========<br />
<br />
Hit:1 <a href="http://security.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://security.ubuntu.com/ubuntu</a> jammy-security InRelease<br />
Get:2 <a href="https://dl.google.com/linux/chrome/deb" target="_blank" rel="noopener" class="mycode_url">https://dl.google.com/linux/chrome/deb</a> stable InRelease [2.548 B]<br />
Hit:3 <a href="https://dl.google.com/linux/chrome-stable/deb" target="_blank" rel="noopener" class="mycode_url">https://dl.google.com/linux/chrome-stable/deb</a> stable InRelease<br />
Hit:5 <a href="http://archive.canonical.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://archive.canonical.com/ubuntu</a> jammy InRelease<br />
Err:2 <a href="https://dl.google.com/linux/chrome/deb" target="_blank" rel="noopener" class="mycode_url">https://dl.google.com/linux/chrome/deb</a> stable InRelease<br />
  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FD533C07C264648F<br />
Hit:6 <a href="http://us.archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://us.archive.ubuntu.com/ubuntu</a> jammy InRelease<br />
Ign:7 <a href="https://ppa.launchpadcontent.net/thopiekar/mt7601/ubuntu" target="_blank" rel="noopener" class="mycode_url">https://ppa.launchpadcontent.net/thopiek...601/ubuntu</a> jammy InRelease<br />
Hit:8 <a href="http://us.archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://us.archive.ubuntu.com/ubuntu</a> jammy-updates InRelease<br />
Err:9 <a href="https://ppa.launchpadcontent.net/thopiekar/mt7601/ubuntu" target="_blank" rel="noopener" class="mycode_url">https://ppa.launchpadcontent.net/thopiek...601/ubuntu</a> jammy Release<br />
  404  Not Found [IP: 185.125.189.188 443]<br />
Hit:4 <a href="https://repo.linuxliteos.com/linuxlite" target="_blank" rel="noopener" class="mycode_url">https://repo.linuxliteos.com/linuxlite</a> fluorite InRelease<br />
Hit:10 <a href="http://us.archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://us.archive.ubuntu.com/ubuntu</a> jammy-backports InRelease<br />
Reading package lists...<br />
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: <a href="https://dl.google.com/linux/chrome/deb" target="_blank" rel="noopener" class="mycode_url">https://dl.google.com/linux/chrome/deb</a> stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FD533C07C264648F<br />
E: The repository 'https://ppa.launchpadcontent.net/thopiekar/mt7601/ubuntu jammy Release' does not have a Release file.]]></description>
			<content:encoded><![CDATA[============ Log ===========<br />
<br />
Hit:1 <a href="http://security.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://security.ubuntu.com/ubuntu</a> jammy-security InRelease<br />
Get:2 <a href="https://dl.google.com/linux/chrome/deb" target="_blank" rel="noopener" class="mycode_url">https://dl.google.com/linux/chrome/deb</a> stable InRelease [2.548 B]<br />
Hit:3 <a href="https://dl.google.com/linux/chrome-stable/deb" target="_blank" rel="noopener" class="mycode_url">https://dl.google.com/linux/chrome-stable/deb</a> stable InRelease<br />
Hit:5 <a href="http://archive.canonical.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://archive.canonical.com/ubuntu</a> jammy InRelease<br />
Err:2 <a href="https://dl.google.com/linux/chrome/deb" target="_blank" rel="noopener" class="mycode_url">https://dl.google.com/linux/chrome/deb</a> stable InRelease<br />
  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FD533C07C264648F<br />
Hit:6 <a href="http://us.archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://us.archive.ubuntu.com/ubuntu</a> jammy InRelease<br />
Ign:7 <a href="https://ppa.launchpadcontent.net/thopiekar/mt7601/ubuntu" target="_blank" rel="noopener" class="mycode_url">https://ppa.launchpadcontent.net/thopiek...601/ubuntu</a> jammy InRelease<br />
Hit:8 <a href="http://us.archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://us.archive.ubuntu.com/ubuntu</a> jammy-updates InRelease<br />
Err:9 <a href="https://ppa.launchpadcontent.net/thopiekar/mt7601/ubuntu" target="_blank" rel="noopener" class="mycode_url">https://ppa.launchpadcontent.net/thopiek...601/ubuntu</a> jammy Release<br />
  404  Not Found [IP: 185.125.189.188 443]<br />
Hit:4 <a href="https://repo.linuxliteos.com/linuxlite" target="_blank" rel="noopener" class="mycode_url">https://repo.linuxliteos.com/linuxlite</a> fluorite InRelease<br />
Hit:10 <a href="http://us.archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://us.archive.ubuntu.com/ubuntu</a> jammy-backports InRelease<br />
Reading package lists...<br />
W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: <a href="https://dl.google.com/linux/chrome/deb" target="_blank" rel="noopener" class="mycode_url">https://dl.google.com/linux/chrome/deb</a> stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FD533C07C264648F<br />
E: The repository 'https://ppa.launchpadcontent.net/thopiekar/mt7601/ubuntu jammy Release' does not have a Release file.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Error Instlalling Updates - Thunderbird DOWNGRADE]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9950</link>
			<pubDate>Wed, 05 Aug 2026 06:12:54 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=8439">Kanebush</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9950</guid>
			<description><![CDATA[============ Log ===========<br />
<br />
Reading package lists...<br />
Building dependency tree...<br />
Reading state information...<br />
Calculating upgrade...<br />
The following NEW packages will be installed:<br />
  gir1.2-adw-1 gir1.2-graphene-1.0 gir1.2-gtk-4.0 gir1.2-javascriptcoregtk-6.0<br />
  gir1.2-rsvg-2.0 gir1.2-webkit-6.0 libjavascriptcoregtk-6.0-1<br />
  libwebkitgtk-6.0-4 linux-headers-6.8.0-137 linux-headers-6.8.0-137-generic<br />
  linux-image-6.8.0-137-generic linux-modules-6.8.0-137-generic<br />
  linux-modules-extra-6.8.0-137-generic linux-tools-6.8.0-137<br />
  linux-tools-6.8.0-137-generic<br />
The following packages have been kept back:<br />
  inxi zenity zenity-common<br />
The following packages will be upgraded:<br />
  accountsservice alsa-ucm-conf amd64-microcode apparmor avahi-daemon<br />
  avahi-utils b43-fwcutter base-files bind9-dnsutils bind9-host bind9-libs<br />
  binutils binutils-common binutils-x86-64-linux-gnu bsdextrautils bsdutils<br />
  ca-certificates caca-utils cifs-utils cloud-init coreutils cpp-12 cpp-13<br />
  cpp-13-x86-64-linux-gnu cups cups-client cups-common cups-core-drivers<br />
  cups-daemon cups-ipp-utils cups-ppdc cups-server-common curl<br />
  distro-info-data dnsmasq-base dnsutils dpkg dpkg-dev eject evince<br />
  evince-common evolution-data-server-common fdisk file-roller<br />
  firmware-b43-installer firmware-b43legacy-installer firmware-sof-signed<br />
  fonts-opensymbol g++-13 g++-13-x86-64-linux-gnu gawk gcc-12 gcc-12-base<br />
  gcc-13 gcc-13-base gcc-13-x86-64-linux-gnu gcc-14-base gcc-14-base:i386<br />
  gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0 gir1.2-glib-2.0-dev<br />
  gir1.2-gst-plugins-base-1.0 gir1.2-javascriptcoregtk-4.1 gir1.2-nm-1.0<br />
  gir1.2-packagekitglib-1.0 gir1.2-polkit-1.0 gir1.2-soup-2.4 gir1.2-soup-3.0<br />
  gir1.2-webkit2-4.1 gnome-keyring gnome-keyring-pkcs11 google-chrome-stable<br />
  gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good<br />
  gstreamer1.0-x gvfs gvfs-backends gvfs-common gvfs-daemons gvfs-fuse<br />
  gvfs-libs gzip heif-gdk-pixbuf heif-thumbnailer hplip hplip-data<br />
  i965-va-driver inetutils-telnet initramfs-tools initramfs-tools-bin<br />
  initramfs-tools-core intel-media-va-driver intel-microcode iproute2 jq kmod<br />
  kpartx kpartx-boot krb5-locales language-pack-en language-pack-en-base<br />
  libaccountsservice0 libapparmor1 libarchive13t64 libasan8 libasound2-data<br />
  libasound2t64 libatomic1 libatopology2t64 libavahi-client3<br />
  libavahi-common-data libavahi-common-data:i386 libavahi-common3<br />
  libavahi-core7 libavahi-glib1 libbinutils libblkid-dev libblkid1<br />
  libboost-iostreams1.83.0 libboost-locale1.83.0 libboost-thread1.83.0<br />
  libc-bin libc-dev-bin libc6 libc6:i386 libc6-dev libcaca0 libcap2<br />
  libcap2-bin libcc1-0 libctf-nobfd0 libctf0 libcups2t64 libcupsimage2t64<br />
  libcurl3t64-gnutls libcurl4t64 libde265-0 libdjvulibre-text libdjvulibre21<br />
  libdpkg-perl libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2<br />
  libdrm-radeon1 libdrm2 libegl-mesa0 libevdocument3-4t64 libevview3-3t64<br />
  libexif12 libexiv2-27 libexpat1 libexpat1-dev libfdisk1 libfreetype-dev<br />
  libfreetype6 libgbm1 libgcc-12-dev libgcc-13-dev libgcc-s1 libgcc-s1:i386<br />
  libgcrypt20 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgfortran5 libgif7<br />
  libgirepository-2.0-0 libgl1-amber-dri libgl1-mesa-dri libglapi-amber<br />
  libglib2.0-0t64 libglib2.0-bin libglib2.0-data libglib2.0-dev<br />
  libglib2.0-dev-bin libglx-mesa0 libgnutls30t64 libgomp1 libgphoto2-6t64<br />
  libgphoto2-l10n libgphoto2-port12t64 libgprofng0 libgraphite2-3<br />
  libgssapi-krb5-2 libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0<br />
  libgstreamer-plugins-good1.0-0 libgtk-4-1 libgtk-4-bin libgtk-4-common<br />
  libgtk-4-media-gstreamer libheif-plugin-aomenc libheif-plugin-dav1d<br />
  libheif-plugin-libde265 libheif-plugin-x265 libheif1 libhpmud0<br />
  libhtml-parser-perl libhttp-date-perl libhwasan0 libidn12 libigdgmm12<br />
  libinput-bin libinput10 libitm1 libjavascriptcoregtk-4.1-0 libjbig2dec0<br />
  libjq1 libk5crypto3 libkmod2 libkrb5-3 libkrb5support0 liblcms2-2<br />
  liblcms2-utils libldap-common libldap2 libldb2 libllvm20 liblsan0 liblzma5<br />
  libmount-dev libmount1 libmtp-common libmtp-runtime libmtp9t64 libncurses6<br />
  libncursesw6 libnetplan1 libnfs14 libnftables1 libnghttp2-14 libnm0<br />
  libnss-systemd libnss3 libntfs-3g89t64 libnuma1 libopenjp2-7<br />
  libpackagekit-glib2-18 libpam-cap libpam-modules libpam-modules-bin<br />
  libpam-runtime libpam-systemd libpam0g libperl5.38t64 libpipewire-0.3-0t64<br />
  libpipewire-0.3-common libplymouth5 libpng-dev libpng-tools libpng16-16t64<br />
  libpolkit-agent-1-0 libpolkit-gobject-1-0 libpoppler-cpp0t64<br />
  libpoppler-glib8t64 libpoppler134 libprotobuf-lite32t64 libpython3.12-dev<br />
  libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 libqpdf29t64<br />
  libquadmath0 librabbitmq4 libraw23t64 libreoffice-base-core<br />
  libreoffice-common libreoffice-core libreoffice-gnome libreoffice-gtk3<br />
  libreoffice-style-colibre libreoffice-style-elementary<br />
  libreoffice-style-tango libreoffice-style-yaru libreoffice-uiconfig-common<br />
  libsane-hpaio libsframe1 libsmartcols1 libsmbclient0 libsoup-2.4-1<br />
  libsoup-3.0-0 libsoup-3.0-common libsoup-gnome-2.4-1 libsoup2.4-common<br />
  libspa-0.2-modules libsqlite3-0 libssh-4 libssh-gcrypt-4 libssh2-1t64<br />
  libssl3t64 libstdc++-13-dev libstdc++6 libstdc++6:i386 libsystemd-dev<br />
  libsystemd-shared libsystemd0 libtiff6 libtinfo6 libtsan2 libubsan1 libudev1<br />
  libuno-cppu3t64 libuno-cppuhelpergcc3-3t64 libuno-purpenvhelpergcc3-3t64<br />
  libuno-sal3t64 libuno-salhelpergcc3-3t64 libuuid1 libva-drm2 libva-wayland2<br />
  libva-x11-2 libva2 libvncclient1 libvpx9 libwbclient0 libwebkit2gtk-4.1-0<br />
  libwww-perl libxatracker2 libxfont2 libxml-parser-perl libxml2 libxmlb2<br />
  libxnvctrl0 libxpm4 lintian linux-base linux-firmware linux-generic<br />
  linux-headers-generic linux-image-generic linux-libc-dev linux-tools-common<br />
  lite-autologin lite-desktop lite-info lite-patch lite-software lite-sounds<br />
  lite-sources lite-thememanager lite-themes lite-upgrade-series7<br />
  lite-usermanager lite-welcome locales lshw mailcap mesa-libgallium<br />
  mesa-va-drivers mesa-vdpau-drivers mintstick mount mtp-tools nano<br />
  ncurses-base ncurses-bin ncurses-term netplan-generator netplan.io<br />
  network-manager network-manager-openvpn network-manager-openvpn-gnome<br />
  nftables ntfs-3g nvidia-common open-vm-tools open-vm-tools-desktop<br />
  openjdk-17-jre-headless openjdk-21-jre-headless openssh-client<br />
  openssh-server openssh-sftp-server openssl openvpn packagekit<br />
  packagekit-tools perl perl-base perl-modules-5.38 pkexec plymouth<br />
  plymouth-label plymouth-theme-spinner plymouth-theme-ubuntu-text<br />
  plymouth-x11 policykit-1 polkitd poppler-utils postfix<br />
  printer-driver-cups-pdf printer-driver-hpcups printer-driver-hpijs<br />
  printer-driver-postscript-hp python-apt-common python3-apport python3-apt<br />
  python3-cryptography python3-distupgrade python3-httplib2 python3-idna<br />
  python3-jwt python3-ldb python3-mako python3-netplan python3-nftables<br />
  python3-pil python3-problem-report python3-samba python3-software-properties<br />
  python3-urllib3 python3.12 python3.12-dev python3.12-minimal qpdf rfkill<br />
  rsync rsyslog samba samba-ad-provision samba-common samba-common-bin<br />
  samba-dsdb-modules samba-libs samba-vfs-modules sed smbclient snapd<br />
  software-properties-common software-properties-gtk sudo systemd systemd-dev<br />
  systemd-hwe-hwdb systemd-resolved systemd-sysv tar telnet thermald tzdata<br />
  tzdata-legacy ubuntu-advantage-tools ubuntu-drivers-common ubuntu-pro-client<br />
  ubuntu-pro-client-l10n ubuntu-release-upgrader-core udev uno-libs-private<br />
  ure util-linux util-linux-extra uuid-dev uuid-runtime va-driver-all<br />
  vim-common vim-tiny wget wireless-regdb wpasupplicant xdg-dbus-proxy<br />
  xdg-desktop-portal xserver-common xserver-xorg-core xserver-xorg-legacy xxd<br />
  xz-utils<br />
The following packages will be DOWNGRADED:<br />
  thunderbird<br />
465 upgraded, 15 newly installed, 1 downgraded, 0 to remove and 3 not upgraded.<br />
E: Packages were downgraded and -y was used without --allow-downgrades.]]></description>
			<content:encoded><![CDATA[============ Log ===========<br />
<br />
Reading package lists...<br />
Building dependency tree...<br />
Reading state information...<br />
Calculating upgrade...<br />
The following NEW packages will be installed:<br />
  gir1.2-adw-1 gir1.2-graphene-1.0 gir1.2-gtk-4.0 gir1.2-javascriptcoregtk-6.0<br />
  gir1.2-rsvg-2.0 gir1.2-webkit-6.0 libjavascriptcoregtk-6.0-1<br />
  libwebkitgtk-6.0-4 linux-headers-6.8.0-137 linux-headers-6.8.0-137-generic<br />
  linux-image-6.8.0-137-generic linux-modules-6.8.0-137-generic<br />
  linux-modules-extra-6.8.0-137-generic linux-tools-6.8.0-137<br />
  linux-tools-6.8.0-137-generic<br />
The following packages have been kept back:<br />
  inxi zenity zenity-common<br />
The following packages will be upgraded:<br />
  accountsservice alsa-ucm-conf amd64-microcode apparmor avahi-daemon<br />
  avahi-utils b43-fwcutter base-files bind9-dnsutils bind9-host bind9-libs<br />
  binutils binutils-common binutils-x86-64-linux-gnu bsdextrautils bsdutils<br />
  ca-certificates caca-utils cifs-utils cloud-init coreutils cpp-12 cpp-13<br />
  cpp-13-x86-64-linux-gnu cups cups-client cups-common cups-core-drivers<br />
  cups-daemon cups-ipp-utils cups-ppdc cups-server-common curl<br />
  distro-info-data dnsmasq-base dnsutils dpkg dpkg-dev eject evince<br />
  evince-common evolution-data-server-common fdisk file-roller<br />
  firmware-b43-installer firmware-b43legacy-installer firmware-sof-signed<br />
  fonts-opensymbol g++-13 g++-13-x86-64-linux-gnu gawk gcc-12 gcc-12-base<br />
  gcc-13 gcc-13-base gcc-13-x86-64-linux-gnu gcc-14-base gcc-14-base:i386<br />
  gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0 gir1.2-glib-2.0-dev<br />
  gir1.2-gst-plugins-base-1.0 gir1.2-javascriptcoregtk-4.1 gir1.2-nm-1.0<br />
  gir1.2-packagekitglib-1.0 gir1.2-polkit-1.0 gir1.2-soup-2.4 gir1.2-soup-3.0<br />
  gir1.2-webkit2-4.1 gnome-keyring gnome-keyring-pkcs11 google-chrome-stable<br />
  gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good<br />
  gstreamer1.0-x gvfs gvfs-backends gvfs-common gvfs-daemons gvfs-fuse<br />
  gvfs-libs gzip heif-gdk-pixbuf heif-thumbnailer hplip hplip-data<br />
  i965-va-driver inetutils-telnet initramfs-tools initramfs-tools-bin<br />
  initramfs-tools-core intel-media-va-driver intel-microcode iproute2 jq kmod<br />
  kpartx kpartx-boot krb5-locales language-pack-en language-pack-en-base<br />
  libaccountsservice0 libapparmor1 libarchive13t64 libasan8 libasound2-data<br />
  libasound2t64 libatomic1 libatopology2t64 libavahi-client3<br />
  libavahi-common-data libavahi-common-data:i386 libavahi-common3<br />
  libavahi-core7 libavahi-glib1 libbinutils libblkid-dev libblkid1<br />
  libboost-iostreams1.83.0 libboost-locale1.83.0 libboost-thread1.83.0<br />
  libc-bin libc-dev-bin libc6 libc6:i386 libc6-dev libcaca0 libcap2<br />
  libcap2-bin libcc1-0 libctf-nobfd0 libctf0 libcups2t64 libcupsimage2t64<br />
  libcurl3t64-gnutls libcurl4t64 libde265-0 libdjvulibre-text libdjvulibre21<br />
  libdpkg-perl libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2<br />
  libdrm-radeon1 libdrm2 libegl-mesa0 libevdocument3-4t64 libevview3-3t64<br />
  libexif12 libexiv2-27 libexpat1 libexpat1-dev libfdisk1 libfreetype-dev<br />
  libfreetype6 libgbm1 libgcc-12-dev libgcc-13-dev libgcc-s1 libgcc-s1:i386<br />
  libgcrypt20 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgfortran5 libgif7<br />
  libgirepository-2.0-0 libgl1-amber-dri libgl1-mesa-dri libglapi-amber<br />
  libglib2.0-0t64 libglib2.0-bin libglib2.0-data libglib2.0-dev<br />
  libglib2.0-dev-bin libglx-mesa0 libgnutls30t64 libgomp1 libgphoto2-6t64<br />
  libgphoto2-l10n libgphoto2-port12t64 libgprofng0 libgraphite2-3<br />
  libgssapi-krb5-2 libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0<br />
  libgstreamer-plugins-good1.0-0 libgtk-4-1 libgtk-4-bin libgtk-4-common<br />
  libgtk-4-media-gstreamer libheif-plugin-aomenc libheif-plugin-dav1d<br />
  libheif-plugin-libde265 libheif-plugin-x265 libheif1 libhpmud0<br />
  libhtml-parser-perl libhttp-date-perl libhwasan0 libidn12 libigdgmm12<br />
  libinput-bin libinput10 libitm1 libjavascriptcoregtk-4.1-0 libjbig2dec0<br />
  libjq1 libk5crypto3 libkmod2 libkrb5-3 libkrb5support0 liblcms2-2<br />
  liblcms2-utils libldap-common libldap2 libldb2 libllvm20 liblsan0 liblzma5<br />
  libmount-dev libmount1 libmtp-common libmtp-runtime libmtp9t64 libncurses6<br />
  libncursesw6 libnetplan1 libnfs14 libnftables1 libnghttp2-14 libnm0<br />
  libnss-systemd libnss3 libntfs-3g89t64 libnuma1 libopenjp2-7<br />
  libpackagekit-glib2-18 libpam-cap libpam-modules libpam-modules-bin<br />
  libpam-runtime libpam-systemd libpam0g libperl5.38t64 libpipewire-0.3-0t64<br />
  libpipewire-0.3-common libplymouth5 libpng-dev libpng-tools libpng16-16t64<br />
  libpolkit-agent-1-0 libpolkit-gobject-1-0 libpoppler-cpp0t64<br />
  libpoppler-glib8t64 libpoppler134 libprotobuf-lite32t64 libpython3.12-dev<br />
  libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 libqpdf29t64<br />
  libquadmath0 librabbitmq4 libraw23t64 libreoffice-base-core<br />
  libreoffice-common libreoffice-core libreoffice-gnome libreoffice-gtk3<br />
  libreoffice-style-colibre libreoffice-style-elementary<br />
  libreoffice-style-tango libreoffice-style-yaru libreoffice-uiconfig-common<br />
  libsane-hpaio libsframe1 libsmartcols1 libsmbclient0 libsoup-2.4-1<br />
  libsoup-3.0-0 libsoup-3.0-common libsoup-gnome-2.4-1 libsoup2.4-common<br />
  libspa-0.2-modules libsqlite3-0 libssh-4 libssh-gcrypt-4 libssh2-1t64<br />
  libssl3t64 libstdc++-13-dev libstdc++6 libstdc++6:i386 libsystemd-dev<br />
  libsystemd-shared libsystemd0 libtiff6 libtinfo6 libtsan2 libubsan1 libudev1<br />
  libuno-cppu3t64 libuno-cppuhelpergcc3-3t64 libuno-purpenvhelpergcc3-3t64<br />
  libuno-sal3t64 libuno-salhelpergcc3-3t64 libuuid1 libva-drm2 libva-wayland2<br />
  libva-x11-2 libva2 libvncclient1 libvpx9 libwbclient0 libwebkit2gtk-4.1-0<br />
  libwww-perl libxatracker2 libxfont2 libxml-parser-perl libxml2 libxmlb2<br />
  libxnvctrl0 libxpm4 lintian linux-base linux-firmware linux-generic<br />
  linux-headers-generic linux-image-generic linux-libc-dev linux-tools-common<br />
  lite-autologin lite-desktop lite-info lite-patch lite-software lite-sounds<br />
  lite-sources lite-thememanager lite-themes lite-upgrade-series7<br />
  lite-usermanager lite-welcome locales lshw mailcap mesa-libgallium<br />
  mesa-va-drivers mesa-vdpau-drivers mintstick mount mtp-tools nano<br />
  ncurses-base ncurses-bin ncurses-term netplan-generator netplan.io<br />
  network-manager network-manager-openvpn network-manager-openvpn-gnome<br />
  nftables ntfs-3g nvidia-common open-vm-tools open-vm-tools-desktop<br />
  openjdk-17-jre-headless openjdk-21-jre-headless openssh-client<br />
  openssh-server openssh-sftp-server openssl openvpn packagekit<br />
  packagekit-tools perl perl-base perl-modules-5.38 pkexec plymouth<br />
  plymouth-label plymouth-theme-spinner plymouth-theme-ubuntu-text<br />
  plymouth-x11 policykit-1 polkitd poppler-utils postfix<br />
  printer-driver-cups-pdf printer-driver-hpcups printer-driver-hpijs<br />
  printer-driver-postscript-hp python-apt-common python3-apport python3-apt<br />
  python3-cryptography python3-distupgrade python3-httplib2 python3-idna<br />
  python3-jwt python3-ldb python3-mako python3-netplan python3-nftables<br />
  python3-pil python3-problem-report python3-samba python3-software-properties<br />
  python3-urllib3 python3.12 python3.12-dev python3.12-minimal qpdf rfkill<br />
  rsync rsyslog samba samba-ad-provision samba-common samba-common-bin<br />
  samba-dsdb-modules samba-libs samba-vfs-modules sed smbclient snapd<br />
  software-properties-common software-properties-gtk sudo systemd systemd-dev<br />
  systemd-hwe-hwdb systemd-resolved systemd-sysv tar telnet thermald tzdata<br />
  tzdata-legacy ubuntu-advantage-tools ubuntu-drivers-common ubuntu-pro-client<br />
  ubuntu-pro-client-l10n ubuntu-release-upgrader-core udev uno-libs-private<br />
  ure util-linux util-linux-extra uuid-dev uuid-runtime va-driver-all<br />
  vim-common vim-tiny wget wireless-regdb wpasupplicant xdg-dbus-proxy<br />
  xdg-desktop-portal xserver-common xserver-xorg-core xserver-xorg-legacy xxd<br />
  xz-utils<br />
The following packages will be DOWNGRADED:<br />
  thunderbird<br />
465 upgraded, 15 newly installed, 1 downgraded, 0 to remove and 3 not upgraded.<br />
E: Packages were downgraded and -y was used without --allow-downgrades.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Trouble installing LL on old Laptop]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9948</link>
			<pubDate>Tue, 04 Aug 2026 01:24:52 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=3121">lintek</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9948</guid>
			<description><![CDATA[I have an old HP2000 laptop.  I wanted to install LL but having trouble getting it to boot to the thumb drive.  I know the thumb drive is good as I have used it to install on other computer.<br />
<br />
I was able to install Linux Mint but I'd really prefer LITE - unless someone has a suggestion for a linux version that would be good on an old slow laptop.  I ONLY use it for occasional travel and it would be used for internet access only.  It can be bare bones.  I just prefer a quick boot up etc.<br />
<br />
Maybe Puppy Linux?<br />
<br />
Here is what I get when I try to boot to the USB drive<br />
<a href="https://temp-image.com/h11OLkD20BmGXRD" target="_blank" rel="noopener" class="mycode_url"><img src="https://temp-image.com/ib/5gxvX2cikjonsae_1785777526.jpg" loading="lazy"  alt="[Image: 5gxvX2cikjonsae_1785777526.jpg]" class="mycode_img img-responsive" /></a>]]></description>
			<content:encoded><![CDATA[I have an old HP2000 laptop.  I wanted to install LL but having trouble getting it to boot to the thumb drive.  I know the thumb drive is good as I have used it to install on other computer.<br />
<br />
I was able to install Linux Mint but I'd really prefer LITE - unless someone has a suggestion for a linux version that would be good on an old slow laptop.  I ONLY use it for occasional travel and it would be used for internet access only.  It can be bare bones.  I just prefer a quick boot up etc.<br />
<br />
Maybe Puppy Linux?<br />
<br />
Here is what I get when I try to boot to the USB drive<br />
<a href="https://temp-image.com/h11OLkD20BmGXRD" target="_blank" rel="noopener" class="mycode_url"><img src="https://temp-image.com/ib/5gxvX2cikjonsae_1785777526.jpg" loading="lazy"  alt="[Image: 5gxvX2cikjonsae_1785777526.jpg]" class="mycode_img img-responsive" /></a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Update error - Repository changed information]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9947</link>
			<pubDate>Fri, 31 Jul 2026 22:50:53 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=5296">Feather</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9947</guid>
			<description><![CDATA[Package update indicator shows software update available.<br />
But:<br />
<br />
Install Updates Error log<br />
===========================<br />
Install Updates could not fetch the package cache information lists.<br />
Go to <a href="https://www.linuxliteos.com/forums/" target="_blank" rel="noopener" class="mycode_url">https://www.linuxliteos.com/forums/</a> and paste the log below into the Software - Support - Updates section for assistance.<br />
<br />
============ Log ===========<br />
<br />
Hit:1 <a href="http://archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://archive.ubuntu.com/ubuntu</a> jammy InRelease<br />
Hit:2 <a href="http://archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://archive.ubuntu.com/ubuntu</a> jammy-updates InRelease<br />
Hit:3 <a href="http://www.mirrorservice.org/sites/repo.linuxliteos.com/linuxlite" target="_blank" rel="noopener" class="mycode_url">http://www.mirrorservice.org/sites/repo..../linuxlite</a> fluorite InRelease<br />
Get:4 <a href="http://archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://archive.ubuntu.com/ubuntu</a> jammy-security InRelease [129 kB]<br />
Get:5 <a href="http://archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://archive.ubuntu.com/ubuntu</a> jammy-backports InRelease [127 kB]<br />
Hit:6 <a href="http://archive.canonical.com" target="_blank" rel="noopener" class="mycode_url">http://archive.canonical.com</a> jammy InRelease<br />
Reading package lists...<br />
E: Repository 'http://archive.ubuntu.com/ubuntu jammy-security InRelease' changed its 'Origin' value from 'Canonical' to 'Ubuntu'<br />
E: Repository 'http://archive.ubuntu.com/ubuntu jammy-security InRelease' changed its 'Label' value from 'Partner archive' to 'Ubuntu'<br />
E: Repository 'http://archive.ubuntu.com/ubuntu jammy-backports InRelease' changed its 'Origin' value from 'Canonical' to 'Ubuntu'<br />
E: Repository 'http://archive.ubuntu.com/ubuntu jammy-backports InRelease' changed its 'Label' value from 'Partner archive' to 'Ubuntu'<br />
E: Repository 'http://archive.ubuntu.com/ubuntu jammy-backports InRelease' changed its default priority for apt_preferences(5) from 500 to 100.<br />
W: Skipping acquisition of configured file 'partner/binary-amd64/Packages', as repository 'http://archive.canonical.com jammy InRelease' doesn't have the component 'partner' (component misspelt in sources.list?)<br />
W: Skipping acquisition of configured file 'partner/binary-i386/Packages', as repository 'http://archive.canonical.com jammy InRelease' doesn't have the component 'partner' (component misspelt in sources.list?)<br />
W: Skipping acquisition of configured file 'partner/i18n/Translation-en_GB', as repository 'http://archive.canonical.com jammy InRelease' doesn't have the component 'partner' (component misspelt in sources.list?)<br />
W: Skipping acquisition of configured file 'partner/i18n/Translation-en', as repository 'http://archive.canonical.com jammy InRelease' doesn't have the component 'partner' (component misspelt in sources.list?)<br />
W: Skipping acquisition of configured file 'partner/cnf/Commands-amd64', as repository 'http://archive.canonical.com jammy InRelease' doesn't have the component 'partner' (component misspelt in sources.list?)]]></description>
			<content:encoded><![CDATA[Package update indicator shows software update available.<br />
But:<br />
<br />
Install Updates Error log<br />
===========================<br />
Install Updates could not fetch the package cache information lists.<br />
Go to <a href="https://www.linuxliteos.com/forums/" target="_blank" rel="noopener" class="mycode_url">https://www.linuxliteos.com/forums/</a> and paste the log below into the Software - Support - Updates section for assistance.<br />
<br />
============ Log ===========<br />
<br />
Hit:1 <a href="http://archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://archive.ubuntu.com/ubuntu</a> jammy InRelease<br />
Hit:2 <a href="http://archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://archive.ubuntu.com/ubuntu</a> jammy-updates InRelease<br />
Hit:3 <a href="http://www.mirrorservice.org/sites/repo.linuxliteos.com/linuxlite" target="_blank" rel="noopener" class="mycode_url">http://www.mirrorservice.org/sites/repo..../linuxlite</a> fluorite InRelease<br />
Get:4 <a href="http://archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://archive.ubuntu.com/ubuntu</a> jammy-security InRelease [129 kB]<br />
Get:5 <a href="http://archive.ubuntu.com/ubuntu" target="_blank" rel="noopener" class="mycode_url">http://archive.ubuntu.com/ubuntu</a> jammy-backports InRelease [127 kB]<br />
Hit:6 <a href="http://archive.canonical.com" target="_blank" rel="noopener" class="mycode_url">http://archive.canonical.com</a> jammy InRelease<br />
Reading package lists...<br />
E: Repository 'http://archive.ubuntu.com/ubuntu jammy-security InRelease' changed its 'Origin' value from 'Canonical' to 'Ubuntu'<br />
E: Repository 'http://archive.ubuntu.com/ubuntu jammy-security InRelease' changed its 'Label' value from 'Partner archive' to 'Ubuntu'<br />
E: Repository 'http://archive.ubuntu.com/ubuntu jammy-backports InRelease' changed its 'Origin' value from 'Canonical' to 'Ubuntu'<br />
E: Repository 'http://archive.ubuntu.com/ubuntu jammy-backports InRelease' changed its 'Label' value from 'Partner archive' to 'Ubuntu'<br />
E: Repository 'http://archive.ubuntu.com/ubuntu jammy-backports InRelease' changed its default priority for apt_preferences(5) from 500 to 100.<br />
W: Skipping acquisition of configured file 'partner/binary-amd64/Packages', as repository 'http://archive.canonical.com jammy InRelease' doesn't have the component 'partner' (component misspelt in sources.list?)<br />
W: Skipping acquisition of configured file 'partner/binary-i386/Packages', as repository 'http://archive.canonical.com jammy InRelease' doesn't have the component 'partner' (component misspelt in sources.list?)<br />
W: Skipping acquisition of configured file 'partner/i18n/Translation-en_GB', as repository 'http://archive.canonical.com jammy InRelease' doesn't have the component 'partner' (component misspelt in sources.list?)<br />
W: Skipping acquisition of configured file 'partner/i18n/Translation-en', as repository 'http://archive.canonical.com jammy InRelease' doesn't have the component 'partner' (component misspelt in sources.list?)<br />
W: Skipping acquisition of configured file 'partner/cnf/Commands-amd64', as repository 'http://archive.canonical.com jammy InRelease' doesn't have the component 'partner' (component misspelt in sources.list?)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[A note on advertising on the website]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9946</link>
			<pubDate>Tue, 28 Jul 2026 05:33:11 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=2">valtam</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9946</guid>
			<description><![CDATA[<div style="max-width:680px;margin:0 auto;padding:24px 28px;font-family:-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;font-size:15px;line-height:1.65;color:#2b2b2b;background:#ffffff;border:1px solid #e3e1e1;border-left:4px solid #d4a843;border-radius:6px;"><h2 style="margin:0 0 16px;font-size:21px;font-weight:700;color:#2b2b2b;">A note on advertising on the website</h2><p style="margin:0 0 14px;">We've had some feedback recently about the number of ads on the Linux Lite website, and it's fair &mdash; so I want to address it openly rather than quietly.</p><p style="margin:0 0 14px;">First, the honest part: Linux Lite is free, and always will be. But the servers, the download mirrors, the forum, and the time that goes into the OS aren't free, and advertising is one of the ways we keep the lights on without putting the distro itself behind a paywall or a mandatory donation. That's the trade-off, and we don't pretend otherwise.</p><p style="margin:0 0 14px;">That said, &ldquo;we need revenue&rdquo; is not a licence to make the site unpleasant to use, and if the ads are burying the thing you actually came for &mdash; the ISO download &mdash; then they've stopped doing their job and started getting in the way. That's on us to fix, and we're going to.</p><p style="margin:0 0 10px;">A couple of things worth knowing in the meantime:</p><ul style="margin:0 0 14px;padding-left:22px;"><li style="margin:0 0 10px;"><strong>Those flashing &ldquo;Download&rdquo;, &ldquo;Free Account&rdquo;, and &ldquo;Click here!&rdquo; banners are not ours.</strong> They're third-party ads served by the ad network, and some advertisers deliberately design them to look like download buttons to trick you into clicking. The <strong>real</strong> download link is the plain one in the middle of the page &mdash; never a blinking banner. Please don't click the flashy ones; they don't lead to Linux Lite.</li><li style="margin:0 0 10px;">We're reviewing ad placement and density across the site, trimming the worst offenders, and making sure the genuine Download button is unmistakable and near the top of the page.</li><li style="margin:0;">We're also able to block certain categories of misleading ads at the network level, and we'll be tightening those filters.</li></ul><p style="margin:0 0 14px;">If you've hit a page where the layout is especially bad, reply here with the page and, if you can, a screenshot &mdash; that helps us target the cleanup rather than guessing.</p><p style="margin:0 0 18px;">Thanks to everyone who raised this. Feedback like it is exactly how the site gets better, and it's taken seriously.</p><p style="margin:0;font-weight:600;color:#d4a843;">&mdash; The Linux Lite Team</p></div>
]]></description>
			<content:encoded><![CDATA[<div style="max-width:680px;margin:0 auto;padding:24px 28px;font-family:-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;font-size:15px;line-height:1.65;color:#2b2b2b;background:#ffffff;border:1px solid #e3e1e1;border-left:4px solid #d4a843;border-radius:6px;"><h2 style="margin:0 0 16px;font-size:21px;font-weight:700;color:#2b2b2b;">A note on advertising on the website</h2><p style="margin:0 0 14px;">We've had some feedback recently about the number of ads on the Linux Lite website, and it's fair &mdash; so I want to address it openly rather than quietly.</p><p style="margin:0 0 14px;">First, the honest part: Linux Lite is free, and always will be. But the servers, the download mirrors, the forum, and the time that goes into the OS aren't free, and advertising is one of the ways we keep the lights on without putting the distro itself behind a paywall or a mandatory donation. That's the trade-off, and we don't pretend otherwise.</p><p style="margin:0 0 14px;">That said, &ldquo;we need revenue&rdquo; is not a licence to make the site unpleasant to use, and if the ads are burying the thing you actually came for &mdash; the ISO download &mdash; then they've stopped doing their job and started getting in the way. That's on us to fix, and we're going to.</p><p style="margin:0 0 10px;">A couple of things worth knowing in the meantime:</p><ul style="margin:0 0 14px;padding-left:22px;"><li style="margin:0 0 10px;"><strong>Those flashing &ldquo;Download&rdquo;, &ldquo;Free Account&rdquo;, and &ldquo;Click here!&rdquo; banners are not ours.</strong> They're third-party ads served by the ad network, and some advertisers deliberately design them to look like download buttons to trick you into clicking. The <strong>real</strong> download link is the plain one in the middle of the page &mdash; never a blinking banner. Please don't click the flashy ones; they don't lead to Linux Lite.</li><li style="margin:0 0 10px;">We're reviewing ad placement and density across the site, trimming the worst offenders, and making sure the genuine Download button is unmistakable and near the top of the page.</li><li style="margin:0;">We're also able to block certain categories of misleading ads at the network level, and we'll be tightening those filters.</li></ul><p style="margin:0 0 14px;">If you've hit a page where the layout is especially bad, reply here with the page and, if you can, a screenshot &mdash; that helps us target the cleanup rather than guessing.</p><p style="margin:0 0 18px;">Thanks to everyone who raised this. Feedback like it is exactly how the site gets better, and it's taken seriously.</p><p style="margin:0;font-weight:600;color:#d4a843;">&mdash; The Linux Lite Team</p></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Too Many Ads on Your Site]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9943</link>
			<pubDate>Mon, 27 Jul 2026 02:11:02 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=8417">scubapro28</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9943</guid>
			<description><![CDATA[As a former fan of Linux Lite, I was sad to see how many ads are on your web page. So many huge, blinking  'Download' 'Free Account! 'Click here!  banners across the page, it took me a couple minutes to even find the actual  Download link to your isos. <br />
<br />
I understand you need to bring in revenue, but this is too much. It's  a complete turn off--and, ironically, they distract from find out more about Linux Lite. I will not be returning. I wonder how many others have been put off by all these ads.]]></description>
			<content:encoded><![CDATA[As a former fan of Linux Lite, I was sad to see how many ads are on your web page. So many huge, blinking  'Download' 'Free Account! 'Click here!  banners across the page, it took me a couple minutes to even find the actual  Download link to your isos. <br />
<br />
I understand you need to bring in revenue, but this is too much. It's  a complete turn off--and, ironically, they distract from find out more about Linux Lite. I will not be returning. I wonder how many others have been put off by all these ads.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Boot device not detected after install]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9939</link>
			<pubDate>Tue, 21 Jul 2026 22:22:32 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=8405">Coconut</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9939</guid>
			<description><![CDATA[Hi, I'm trying to install Linux Lite on an old ASUS laptop from a usb drive.<br />
The live install went fine, I chose the ''Erase Disk'' option.<br />
When the install was done, I rebooted. I was  prompted to remove the usb drive and I did so.<br />
<br />
Then, I got a black screen with the message : "Reboot and Select proper Boot device or insert Boot Media in selected Boot device and press a key" and no other options<br />
<br />
I checked the BIOS, Secure Boot is disabled and my only boot options are called  " HL-DT-ST DVDRAM GU71N" which must be the DVD reader of the laptop, and "Realtek PXE B04 D00". Booting with either of those fails and displays the same message.<br />
When I tried to re-install, the "Partition" section of the install showed an existing Linux partition, so i should have a correct device to boot from.<br />
<br />
I tried to re-install several times with manual partitioning but still got the same message.<br />
<br />
Any idea of what I should do ?<br />
<br />
Thanks in advance]]></description>
			<content:encoded><![CDATA[Hi, I'm trying to install Linux Lite on an old ASUS laptop from a usb drive.<br />
The live install went fine, I chose the ''Erase Disk'' option.<br />
When the install was done, I rebooted. I was  prompted to remove the usb drive and I did so.<br />
<br />
Then, I got a black screen with the message : "Reboot and Select proper Boot device or insert Boot Media in selected Boot device and press a key" and no other options<br />
<br />
I checked the BIOS, Secure Boot is disabled and my only boot options are called  " HL-DT-ST DVDRAM GU71N" which must be the DVD reader of the laptop, and "Realtek PXE B04 D00". Booting with either of those fails and displays the same message.<br />
When I tried to re-install, the "Partition" section of the install showed an existing Linux partition, so i should have a correct device to boot from.<br />
<br />
I tried to re-install several times with manual partitioning but still got the same message.<br />
<br />
Any idea of what I should do ?<br />
<br />
Thanks in advance]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to access NAS ?]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9938</link>
			<pubDate>Sun, 19 Jul 2026 12:58:29 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=5882">Gemini6</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9938</guid>
			<description><![CDATA[Hello, I am trying to access a NAS (Buffalo Link Station Mini) on my local network, as for now I cannot... I am wondering if someone can give me some help..<br />
<br />
My setup is very simple. All my computers are connected to my router, and my NAS is connected to the same router. (IP range is from 192.168.0.xxx)I am trying to access a NAS (HDD) on my local network, as for now I cannot... I am wondering if someone can give me...<br />
<br />
My problem is; with my computer running Linux Lite, I cannot see my NAS (or any shared folder in my other computers), which are running WIndows. <br />
<br />
With WIndows computers, it is very easy, I see my NAS and my other computers in my Network, and I can access them without any problem.<br />
<br />
With my computer with Linux Lite, which I am testing, I have not found a way to see my NAS (and other computers) and access it.<br />
<br />
I have read - <a href="https://www.linuxliteos.com/manual/network.html#lintowin" target="_blank" rel="noopener" class="mycode_url">https://www.linuxliteos.com/manual/netwo...l#lintowin</a> (Accesing WIndows shares with Linux Lite)<br />
When I type smb://192.168.0.15 (which is the IP address of my NAS, I get "Failed to open "FIle System" Failed to retreave share list from server. Software caused connection abort."<br />
So, I can't go further..<br />
<br />
By the way, in my setup, all the PC's in my network can access my NAS and the shared folders in my computers without a password.<br />
<br />
I presume something is missing in my Linux Lite setup or I am doing something wrong, but I don't know what I am doing wrong...<br />
<br />
Although, I installed Linux Lite a few years ago,  I have not been using it since then. So, I don't know much about Linux in general. I am trying to learn... So, if someone can give me some guidance, I would really appreciate. <br />
Thank you.]]></description>
			<content:encoded><![CDATA[Hello, I am trying to access a NAS (Buffalo Link Station Mini) on my local network, as for now I cannot... I am wondering if someone can give me some help..<br />
<br />
My setup is very simple. All my computers are connected to my router, and my NAS is connected to the same router. (IP range is from 192.168.0.xxx)I am trying to access a NAS (HDD) on my local network, as for now I cannot... I am wondering if someone can give me...<br />
<br />
My problem is; with my computer running Linux Lite, I cannot see my NAS (or any shared folder in my other computers), which are running WIndows. <br />
<br />
With WIndows computers, it is very easy, I see my NAS and my other computers in my Network, and I can access them without any problem.<br />
<br />
With my computer with Linux Lite, which I am testing, I have not found a way to see my NAS (and other computers) and access it.<br />
<br />
I have read - <a href="https://www.linuxliteos.com/manual/network.html#lintowin" target="_blank" rel="noopener" class="mycode_url">https://www.linuxliteos.com/manual/netwo...l#lintowin</a> (Accesing WIndows shares with Linux Lite)<br />
When I type smb://192.168.0.15 (which is the IP address of my NAS, I get "Failed to open "FIle System" Failed to retreave share list from server. Software caused connection abort."<br />
So, I can't go further..<br />
<br />
By the way, in my setup, all the PC's in my network can access my NAS and the shared folders in my computers without a password.<br />
<br />
I presume something is missing in my Linux Lite setup or I am doing something wrong, but I don't know what I am doing wrong...<br />
<br />
Although, I installed Linux Lite a few years ago,  I have not been using it since then. So, I don't know much about Linux in general. I am trying to learn... So, if someone can give me some guidance, I would really appreciate. <br />
Thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Installation (bootloader?) issue for LL 8.0 on Lenovo Thinkpad T14s Gen 2]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9937</link>
			<pubDate>Wed, 15 Jul 2026 01:35:24 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=3955">Joe321</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9937</guid>
			<description><![CDATA[I try to install LL8.0 on a Lenovo Thinkpad T14s Gen 2.<br />
<br />
Secure BIOS is disabled.<br />
LL8.0 image created by Etcher.<br />
I try a clean install: "erase" - swap (no hibernate), encrypted, only LL8.0 (no dual boot).<br />
System creates 3 partitions:<br />
- EFI system - FAT32<br />
- rootfs - LUKS<br />
- swap - LUKS<br />
<br />
<br />
During install, I end up with this error message:<br />
<span style="color: #00369b;" class="mycode_color">The bootloader could not be installed. The installation command &lt;pre&gt;grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=Linux_Lite --force&lt;/pre&gt; returned error code 1.</span><br />
<br />
<br />
I tried on 2 different SSD drives in the same laptop with same results (first drive had Win11 on it, the second drive was completely empty).<br />
I tried again on a Lenovo M715Q-MT with Ryzen 5 2400GE with same error message. Later smooth install of LL7.8 on this machine.<br />
<br />
I tried <span style="text-decoration: underline;" class="mycode_u">Valtam's suggestion to update Calamares</span>:<br />
<span style="color: #008e02;" class="mycode_color">"New Calamares build uploaded.</span><br />
<br />
<span style="color: #008e02;" class="mycode_color">Boot the Live ISO. Then:</span><br />
<br />
Code:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>apt download calamares-settings-linuxlite</code></div></div><br />
Code:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sudo dpkg -i *.deb</code></div></div><br />
<span style="color: #008e02;" class="mycode_color">Start the installer, let me know how you get on.</span> "<br />
<br />
At first, the terminal wouldn't take it (no sources available). I had to manually update Lite Sources.<br />
It then accepted to update Calamares. I then tried a new install, and this time got a simple error message "<span style="color: #00369b;" class="mycode_color">Installation failed</span>", no further code or information.<br />
<br />
<br />
On the T14s only, I tried <span style="text-decoration: underline;" class="mycode_u">Serban S solution to first install LL 7.8 (</span>which went fine), then from there upgrade to LL 8.0.<br />
What I ended up with was weird, everything looked like LL8.0 (new desktop, theme, software ...), but the new "About Lite" would still say it's running LL7.8, and I still have Chrome as default browser ... like if I was stuck somewhere in between both versions.<br />
<br />
Any help is appreciated. Thanks.<br />
<br />
<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="text-decoration: underline;" class="mycode_u">Edit</span></span>:<br />
I tried a 5th (or6th?) time to install from Live USB, and it worked. I noticed later that it's because I forgot to tick "encrypt" during install.<br />
So it may be something related with encryption.<br />
Upon realizing my mistake, I tried to reinstall again from Live USB (remembering to tick "encrypt" this time), and got a new error message:<br />
<span style="color: #00369b;" class="mycode_color">"The installer failed to create partition on disk ...</span><br />
<br />
<span style="color: #00369b;" class="mycode_color">Create a new partition (512.00 MiB, fat32) on ‘/dev/nvme0n1’</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Job: Create new partition on device ‘/dev/nvme0n1’</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: sfdisk --force --append /dev/nvme0n1</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: sfdisk --list --output Device,UUID /dev/nvme0n1</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Job: Create file system ‘fat32’ on partition ‘/dev/nvme0n1p1’</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: mkfs.fat -F32 -I -v /dev/nvme0n1p1</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: sfdisk --part-type /dev/nvme0n1 1 EBD0A0A2-B9E5-4433-87C0-68B6B72699C7</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Job: Set the file system label on partition ‘/dev/nvme0n1p1’ to ""</span><br />
<br />
<span style="color: #00369b;" class="mycode_color">Setting label for partition ‘/dev/nvme0n1p1’ to </span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: fatlabel /dev/nvme0n1p1 -r</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Job: Check file system on partition ‘/dev/nvme0n1p1’</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: fsck.fat -a -w -v /dev/nvme0n1p1</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">--- Diagnostic state at failure ---</span><br />
<span style="color: #00369b;" class="mycode_color">lsblk:</span><br />
<span style="color: #00369b;" class="mycode_color">NAME FSTYPE MOUNTPOINT SIZE UUID</span><br />
<span style="color: #00369b;" class="mycode_color">loop0 squashfs /rofs 2.2G </span><br />
<span style="color: #00369b;" class="mycode_color">sda iso9660 7.5G 2026-05-30-23-44-31-00</span><br />
<span style="color: #00369b;" class="mycode_color">|-sda1 iso9660 /cdrom 2.4G 2026-05-30-23-44-31-00</span><br />
<span style="color: #00369b;" class="mycode_color">|-sda2 vfat 5M 73B7-988D</span><br />
<span style="color: #00369b;" class="mycode_color">`-sda3 ext4 /var/crash 5.1G 920c1307-ebe3-45f6-841e-108163a1b2ad</span><br />
<span style="color: #00369b;" class="mycode_color">zram0 0B </span><br />
<span style="color: #00369b;" class="mycode_color">nvme0n1 476.9G </span><br />
<span style="color: #00369b;" class="mycode_color">`-nvme0n1p1 vfat /run/media/linux/7454-DA07 512M 7454-DA07</span><br />
<span style="color: #00369b;" class="mycode_color">dmesg tail:</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Modules linked in: qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) snd_acp_legacy_mach(E) snd_acp_mach(E) snd_soc_nau8821(E) snd_soc_dmic(E) snd_acp3x_rn(E) snd_acp3x_pdm_dma(E) snd_sof_amd_acp70(E) snd_sof_amd_acp63(E) snd_sof_amd_vangogh(E) snd_sof_amd_rembrandt(E) snd_sof_amd_renoir(E) snd_sof_amd_acp(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) amdgpu(E) uvcvideo(E) videobuf2_vmalloc(E) uvc(E) snd_pci_ps(E) videobuf2_memops(E) videobuf2_v4l2(E) videobuf2_common(E) videodev(E) mc(E) snd_soc_acpi_amd_match(E) snd_soc_acpi_amd_sdca_quirks(E) snd_amd_sdw_acpi(E) btusb(E) soundwire_amd(E) soundwire_generic_allocation(E) soundwire_bus(E) btmtk(E) btrtl(E) btbcm(E) btintel(E) snd_soc_sdca(E) snd_soc_core(E) bluetooth(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E) amd_atl(E) amdxcp(E) drm_panel_backlight_quirks(E) gpu_sched(E) drm_buddy(E) drm_exec(E) drm_suballoc_helper(E) snd_hda_codec_alc269(E) drm_display_helper(E) cec(E) mt7921e(E) rc_core(E)</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] snd_hda_codec_realtek_lib(E) snd_hda_scodec_component(E) snd_hda_codec_generic(E) i2c_algo_bit(E) intel_rapl_msr(E) mt7921_common(E) mt792x_lib(E) snd_hda_codec_atihdmi(E) mt76_connac_lib(E) intel_rapl_common(E) mt76(E) snd_rpl_pci_acp6x(E) snd_hda_codec_hdmi(E) mac80211(E) snd_acp_pci(E) snd_hda_intel(E) snd_ctl_led(E) snd_amd_acpi_mach(E) snd_acp_legacy_common(E) cfg80211(E) snd_hda_codec(E) snd_hda_core(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hwdep(E) edac_mce_amd(E) libarc4(E) snd_pci_acp6x(E) kvm_amd(E) snd_pci_acp5x(E) snd_pcm(E) kvm(E) irqbypass(E) thinkpad_acpi(E) snd_timer(E) binfmt_misc(E) snd_rn_pci_acp3x(E) nvram(E) think_lmi(E) snd_acp_config(E) snd_soc_acpi(E) input_leds(E) joydev(E) k10temp(E) rapl(E) wmi_bmof(E) amd_pmc(E) i2c_piix4(E) firmware_attributes_class(E) snd_pci_acp3x(E) mac_hid(E) ccp(E) i2c_smbus(E) vmwgfx(E) drm_ttm_helper(E) ttm(E) lp(E) ppdev(E) parport_pc(E) msr(E) parport(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) autofs4(E) overlay(E) isofs(E) nls_iso8859_1(E)</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] uas(E) usb_storage(E) hid_logitech_hidpp(E) snd(E) hid_multitouch(E) soundcore(E) psmouse(E) platform_profile(E) sparse_keymap(E) ghash_clmulni_intel(E) serio_raw(E) ucsi_acpi(E) i2c_hid_acpi(E) video(E) i2c_hid(E) typec_ucsi(E) nvme(E) typec(E) nvme_core(E) r8169(E) thunderbolt(E) nvme_keyring(E) wmi(E) nvme_auth(E) xhci_pci_renesas(E) realtek(E) hkdf(E) sp5100_tco(E) hid_logitech_dj(E) hid_generic(E) usbhid(E) hid(E) aesni_intel(E)</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] CPU: 1 UID: 0 PID: 98 Comm: kworker/1:1 Tainted: G E 7.0.0-linuxlite #1 PREEMPT(full) </span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Tainted: [E]=UNSIGNED_MODULE</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Hardware name: LENOVO 20XGS0M800/20XGS0M800, BIOS R1NET67W (1.37) 04/16/2026</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Workqueue: events drm_fb_helper_damage_work</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] RIP: 0010:drm_crtc_wait_one_vblank+0x19d/0x200</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Code: 48 85 db 74 7a 48 8b 7b 08 4c 8b 67 50 4d 85 e4 75 03 4c 8b 27 e8 a3 4b ec ff 48 8d 3d 1c f1 bd 01 44 89 e9 4c 89 e2 48 89 c6 &lt;67&gt; 48 0f b9 3a 44 89 ee 48 89 df 41 bf 92 ff ff ff e8 9d fc ff ff</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] RSP: 0018:ffffcfab80493d70 EFLAGS: 00010246</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] RAX: ffffffffc29d78ca RBX: ffff8dff8de00010 RCX: 0000000000000000</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] RDX: ffff8dff811e1370 RSI: ffffffffc29d78ca RDI: ffffffffb92f7a80</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] RBP: ffffcfab80493dd0 R08: 0000000000000000 R09: 0000000000000000</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8dff811e1370</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] R13: 0000000000000000 R14: 000000000000022f R15: 0000000000000000</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] FS: 0000000000000000(0000) GS:ffff8e02a52a9000(0000) knlGS:0000000000000000</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] CR2: 0000754999523cd4 CR3: 000000006a444000 CR4: 0000000000f50ef0</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] PKRU: 55555554</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Call Trace:</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] &lt;TASK&gt;</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? __pfx_autoremove_wake_function+0x10/0x10</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] drm_client_modeset_wait_for_vblank+0x63/0x80</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] drm_fb_helper_damage_work+0x89/0x1a0</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] process_one_work+0x199/0x3c0</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] worker_thread+0x19d/0x340</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? srso_alias_return_thunk+0x5/0xfbef5</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? __pfx_worker_thread+0x10/0x10</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] kthread+0xf7/0x130</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? __pfx_kthread+0x10/0x10</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ret_from_fork+0x29d/0x330</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? __pfx_kthread+0x10/0x10</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? __pfx_kthread+0x10/0x10</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ret_from_fork_asm+0x1a/0x30</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] &lt;/TASK&gt;</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ---[ end trace 0000000000000000 ]---</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Console: switching to colour frame buffer device 240x67</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:04 2026] Bluetooth: RFCOMM TTY layer initialized</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:04 2026] Bluetooth: RFCOMM socket layer initialized</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:04 2026] Bluetooth: RFCOMM ver 1.11</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:19 2026] audit: type=1400 audit(1784051419.544:3): apparmor="DENIED" operation="change_onexec" class="file" info="label not found" error=-2 profile="unconfined" name="ubuntu_pro_apt_news" pid=5436 comm="(python3)"</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:19 2026] audit: type=1400 audit(1784051419.619:4): apparmor="DENIED" operation="change_onexec" class="file" info="label not found" error=-2 profile="unconfined" name="ubuntu_pro_esm_cache" pid=5438 comm="(python3)"</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:28 2026] logitech-hidpp-device 0003:046D:400A.0003: HID++ 2.0 device connected.</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] JFS: nTxBlock = 8192, nTxLock = 65536</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] QNX4 filesystem 0.2.3 registered.</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: avx2x4 gen() 34038 MB/s</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: avx2x2 gen() 34182 MB/s</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: avx2x1 gen() 27836 MB/s</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: using algorithm avx2x2 gen() 34182 MB/s</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: .... xor() 31822 MB/s, rmw enabled</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: using avx2x2 recovery algorithm</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] xor: automatically using best checksumming function avx </span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:36 2026] Btrfs loaded, zoned=yes, fsverity=yes</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:46 2026] EXT4-fs (nvme0n1p2): orphan cleanup on readonly fs</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:46 2026] EXT4-fs (nvme0n1p2): mounted filesystem 898b4919-fb69-492f-904f-cd33486cc0e2 ro without journal. Quota mode: none.</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:52 2026] EXT4-fs (nvme0n1p2): unmounting filesystem 898b4919-fb69-492f-904f-cd33486cc0e2.</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:51:57 2026] nvme0n1:</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:52:04 2026] nvme0n1: p1</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:52:08 2026] nvme0n1: p1</span>]]></description>
			<content:encoded><![CDATA[I try to install LL8.0 on a Lenovo Thinkpad T14s Gen 2.<br />
<br />
Secure BIOS is disabled.<br />
LL8.0 image created by Etcher.<br />
I try a clean install: "erase" - swap (no hibernate), encrypted, only LL8.0 (no dual boot).<br />
System creates 3 partitions:<br />
- EFI system - FAT32<br />
- rootfs - LUKS<br />
- swap - LUKS<br />
<br />
<br />
During install, I end up with this error message:<br />
<span style="color: #00369b;" class="mycode_color">The bootloader could not be installed. The installation command &lt;pre&gt;grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=Linux_Lite --force&lt;/pre&gt; returned error code 1.</span><br />
<br />
<br />
I tried on 2 different SSD drives in the same laptop with same results (first drive had Win11 on it, the second drive was completely empty).<br />
I tried again on a Lenovo M715Q-MT with Ryzen 5 2400GE with same error message. Later smooth install of LL7.8 on this machine.<br />
<br />
I tried <span style="text-decoration: underline;" class="mycode_u">Valtam's suggestion to update Calamares</span>:<br />
<span style="color: #008e02;" class="mycode_color">"New Calamares build uploaded.</span><br />
<br />
<span style="color: #008e02;" class="mycode_color">Boot the Live ISO. Then:</span><br />
<br />
Code:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>apt download calamares-settings-linuxlite</code></div></div><br />
Code:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>sudo dpkg -i *.deb</code></div></div><br />
<span style="color: #008e02;" class="mycode_color">Start the installer, let me know how you get on.</span> "<br />
<br />
At first, the terminal wouldn't take it (no sources available). I had to manually update Lite Sources.<br />
It then accepted to update Calamares. I then tried a new install, and this time got a simple error message "<span style="color: #00369b;" class="mycode_color">Installation failed</span>", no further code or information.<br />
<br />
<br />
On the T14s only, I tried <span style="text-decoration: underline;" class="mycode_u">Serban S solution to first install LL 7.8 (</span>which went fine), then from there upgrade to LL 8.0.<br />
What I ended up with was weird, everything looked like LL8.0 (new desktop, theme, software ...), but the new "About Lite" would still say it's running LL7.8, and I still have Chrome as default browser ... like if I was stuck somewhere in between both versions.<br />
<br />
Any help is appreciated. Thanks.<br />
<br />
<br />
<br />
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="text-decoration: underline;" class="mycode_u">Edit</span></span>:<br />
I tried a 5th (or6th?) time to install from Live USB, and it worked. I noticed later that it's because I forgot to tick "encrypt" during install.<br />
So it may be something related with encryption.<br />
Upon realizing my mistake, I tried to reinstall again from Live USB (remembering to tick "encrypt" this time), and got a new error message:<br />
<span style="color: #00369b;" class="mycode_color">"The installer failed to create partition on disk ...</span><br />
<br />
<span style="color: #00369b;" class="mycode_color">Create a new partition (512.00 MiB, fat32) on ‘/dev/nvme0n1’</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Job: Create new partition on device ‘/dev/nvme0n1’</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: sfdisk --force --append /dev/nvme0n1</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: sfdisk --list --output Device,UUID /dev/nvme0n1</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Job: Create file system ‘fat32’ on partition ‘/dev/nvme0n1p1’</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: mkfs.fat -F32 -I -v /dev/nvme0n1p1</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: sfdisk --part-type /dev/nvme0n1 1 EBD0A0A2-B9E5-4433-87C0-68B6B72699C7</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Job: Set the file system label on partition ‘/dev/nvme0n1p1’ to ""</span><br />
<br />
<span style="color: #00369b;" class="mycode_color">Setting label for partition ‘/dev/nvme0n1p1’ to </span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: fatlabel /dev/nvme0n1p1 -r</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Job: Check file system on partition ‘/dev/nvme0n1p1’</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">Command: fsck.fat -a -w -v /dev/nvme0n1p1</span><br />
<br />
<br />
<span style="color: #00369b;" class="mycode_color">--- Diagnostic state at failure ---</span><br />
<span style="color: #00369b;" class="mycode_color">lsblk:</span><br />
<span style="color: #00369b;" class="mycode_color">NAME FSTYPE MOUNTPOINT SIZE UUID</span><br />
<span style="color: #00369b;" class="mycode_color">loop0 squashfs /rofs 2.2G </span><br />
<span style="color: #00369b;" class="mycode_color">sda iso9660 7.5G 2026-05-30-23-44-31-00</span><br />
<span style="color: #00369b;" class="mycode_color">|-sda1 iso9660 /cdrom 2.4G 2026-05-30-23-44-31-00</span><br />
<span style="color: #00369b;" class="mycode_color">|-sda2 vfat 5M 73B7-988D</span><br />
<span style="color: #00369b;" class="mycode_color">`-sda3 ext4 /var/crash 5.1G 920c1307-ebe3-45f6-841e-108163a1b2ad</span><br />
<span style="color: #00369b;" class="mycode_color">zram0 0B </span><br />
<span style="color: #00369b;" class="mycode_color">nvme0n1 476.9G </span><br />
<span style="color: #00369b;" class="mycode_color">`-nvme0n1p1 vfat /run/media/linux/7454-DA07 512M 7454-DA07</span><br />
<span style="color: #00369b;" class="mycode_color">dmesg tail:</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Modules linked in: qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) snd_acp_legacy_mach(E) snd_acp_mach(E) snd_soc_nau8821(E) snd_soc_dmic(E) snd_acp3x_rn(E) snd_acp3x_pdm_dma(E) snd_sof_amd_acp70(E) snd_sof_amd_acp63(E) snd_sof_amd_vangogh(E) snd_sof_amd_rembrandt(E) snd_sof_amd_renoir(E) snd_sof_amd_acp(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) amdgpu(E) uvcvideo(E) videobuf2_vmalloc(E) uvc(E) snd_pci_ps(E) videobuf2_memops(E) videobuf2_v4l2(E) videobuf2_common(E) videodev(E) mc(E) snd_soc_acpi_amd_match(E) snd_soc_acpi_amd_sdca_quirks(E) snd_amd_sdw_acpi(E) btusb(E) soundwire_amd(E) soundwire_generic_allocation(E) soundwire_bus(E) btmtk(E) btrtl(E) btbcm(E) btintel(E) snd_soc_sdca(E) snd_soc_core(E) bluetooth(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E) amd_atl(E) amdxcp(E) drm_panel_backlight_quirks(E) gpu_sched(E) drm_buddy(E) drm_exec(E) drm_suballoc_helper(E) snd_hda_codec_alc269(E) drm_display_helper(E) cec(E) mt7921e(E) rc_core(E)</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] snd_hda_codec_realtek_lib(E) snd_hda_scodec_component(E) snd_hda_codec_generic(E) i2c_algo_bit(E) intel_rapl_msr(E) mt7921_common(E) mt792x_lib(E) snd_hda_codec_atihdmi(E) mt76_connac_lib(E) intel_rapl_common(E) mt76(E) snd_rpl_pci_acp6x(E) snd_hda_codec_hdmi(E) mac80211(E) snd_acp_pci(E) snd_hda_intel(E) snd_ctl_led(E) snd_amd_acpi_mach(E) snd_acp_legacy_common(E) cfg80211(E) snd_hda_codec(E) snd_hda_core(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hwdep(E) edac_mce_amd(E) libarc4(E) snd_pci_acp6x(E) kvm_amd(E) snd_pci_acp5x(E) snd_pcm(E) kvm(E) irqbypass(E) thinkpad_acpi(E) snd_timer(E) binfmt_misc(E) snd_rn_pci_acp3x(E) nvram(E) think_lmi(E) snd_acp_config(E) snd_soc_acpi(E) input_leds(E) joydev(E) k10temp(E) rapl(E) wmi_bmof(E) amd_pmc(E) i2c_piix4(E) firmware_attributes_class(E) snd_pci_acp3x(E) mac_hid(E) ccp(E) i2c_smbus(E) vmwgfx(E) drm_ttm_helper(E) ttm(E) lp(E) ppdev(E) parport_pc(E) msr(E) parport(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) autofs4(E) overlay(E) isofs(E) nls_iso8859_1(E)</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] uas(E) usb_storage(E) hid_logitech_hidpp(E) snd(E) hid_multitouch(E) soundcore(E) psmouse(E) platform_profile(E) sparse_keymap(E) ghash_clmulni_intel(E) serio_raw(E) ucsi_acpi(E) i2c_hid_acpi(E) video(E) i2c_hid(E) typec_ucsi(E) nvme(E) typec(E) nvme_core(E) r8169(E) thunderbolt(E) nvme_keyring(E) wmi(E) nvme_auth(E) xhci_pci_renesas(E) realtek(E) hkdf(E) sp5100_tco(E) hid_logitech_dj(E) hid_generic(E) usbhid(E) hid(E) aesni_intel(E)</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] CPU: 1 UID: 0 PID: 98 Comm: kworker/1:1 Tainted: G E 7.0.0-linuxlite #1 PREEMPT(full) </span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Tainted: [E]=UNSIGNED_MODULE</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Hardware name: LENOVO 20XGS0M800/20XGS0M800, BIOS R1NET67W (1.37) 04/16/2026</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Workqueue: events drm_fb_helper_damage_work</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] RIP: 0010:drm_crtc_wait_one_vblank+0x19d/0x200</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Code: 48 85 db 74 7a 48 8b 7b 08 4c 8b 67 50 4d 85 e4 75 03 4c 8b 27 e8 a3 4b ec ff 48 8d 3d 1c f1 bd 01 44 89 e9 4c 89 e2 48 89 c6 &lt;67&gt; 48 0f b9 3a 44 89 ee 48 89 df 41 bf 92 ff ff ff e8 9d fc ff ff</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] RSP: 0018:ffffcfab80493d70 EFLAGS: 00010246</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] RAX: ffffffffc29d78ca RBX: ffff8dff8de00010 RCX: 0000000000000000</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] RDX: ffff8dff811e1370 RSI: ffffffffc29d78ca RDI: ffffffffb92f7a80</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] RBP: ffffcfab80493dd0 R08: 0000000000000000 R09: 0000000000000000</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] R10: 0000000000000000 R11: 0000000000000000 R12: ffff8dff811e1370</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] R13: 0000000000000000 R14: 000000000000022f R15: 0000000000000000</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] FS: 0000000000000000(0000) GS:ffff8e02a52a9000(0000) knlGS:0000000000000000</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] CR2: 0000754999523cd4 CR3: 000000006a444000 CR4: 0000000000f50ef0</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] PKRU: 55555554</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Call Trace:</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] &lt;TASK&gt;</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? __pfx_autoremove_wake_function+0x10/0x10</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] drm_client_modeset_wait_for_vblank+0x63/0x80</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] drm_fb_helper_damage_work+0x89/0x1a0</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] process_one_work+0x199/0x3c0</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] worker_thread+0x19d/0x340</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? srso_alias_return_thunk+0x5/0xfbef5</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? __pfx_worker_thread+0x10/0x10</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] kthread+0xf7/0x130</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? __pfx_kthread+0x10/0x10</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ret_from_fork+0x29d/0x330</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? __pfx_kthread+0x10/0x10</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ? __pfx_kthread+0x10/0x10</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ret_from_fork_asm+0x1a/0x30</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] &lt;/TASK&gt;</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] ---[ end trace 0000000000000000 ]---</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:49:55 2026] Console: switching to colour frame buffer device 240x67</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:04 2026] Bluetooth: RFCOMM TTY layer initialized</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:04 2026] Bluetooth: RFCOMM socket layer initialized</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:04 2026] Bluetooth: RFCOMM ver 1.11</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:19 2026] audit: type=1400 audit(1784051419.544:3): apparmor="DENIED" operation="change_onexec" class="file" info="label not found" error=-2 profile="unconfined" name="ubuntu_pro_apt_news" pid=5436 comm="(python3)"</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:19 2026] audit: type=1400 audit(1784051419.619:4): apparmor="DENIED" operation="change_onexec" class="file" info="label not found" error=-2 profile="unconfined" name="ubuntu_pro_esm_cache" pid=5438 comm="(python3)"</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:28 2026] logitech-hidpp-device 0003:046D:400A.0003: HID++ 2.0 device connected.</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] JFS: nTxBlock = 8192, nTxLock = 65536</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] QNX4 filesystem 0.2.3 registered.</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: avx2x4 gen() 34038 MB/s</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: avx2x2 gen() 34182 MB/s</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: avx2x1 gen() 27836 MB/s</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: using algorithm avx2x2 gen() 34182 MB/s</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: .... xor() 31822 MB/s, rmw enabled</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] raid6: using avx2x2 recovery algorithm</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:35 2026] xor: automatically using best checksumming function avx </span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:36 2026] Btrfs loaded, zoned=yes, fsverity=yes</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:46 2026] EXT4-fs (nvme0n1p2): orphan cleanup on readonly fs</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:46 2026] EXT4-fs (nvme0n1p2): mounted filesystem 898b4919-fb69-492f-904f-cd33486cc0e2 ro without journal. Quota mode: none.</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:50:52 2026] EXT4-fs (nvme0n1p2): unmounting filesystem 898b4919-fb69-492f-904f-cd33486cc0e2.</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:51:57 2026] nvme0n1:</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:52:04 2026] nvme0n1: p1</span><br />
<span style="color: #00369b;" class="mycode_color">[Tue Jul 14 12:52:08 2026] nvme0n1: p1</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[External Hard Drive failing to mount]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9935</link>
			<pubDate>Mon, 13 Jul 2026 02:28:48 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=8392">1dj</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9935</guid>
			<description><![CDATA[My external hard drive is not mounting due to an error, "Failed to mount "Xbox Seagate Hard Drive". Error mounting /dev/sdb at /run/media/dj/Xbox Seagate Hard Drive: wrong fs type, bad option, bad superblock on /dev/sdb, missing codepage or helper program, or other error."<br />
<br />
I tried on the latest antiX live boot too and it didnt mount there either.<br />
it was able to mount the last time i used it on Linux Mint XFCE (yesterday)<br />
it isnt showing up in File manager on Windows 11<br />
<br />
i would appreciate if someone could help]]></description>
			<content:encoded><![CDATA[My external hard drive is not mounting due to an error, "Failed to mount "Xbox Seagate Hard Drive". Error mounting /dev/sdb at /run/media/dj/Xbox Seagate Hard Drive: wrong fs type, bad option, bad superblock on /dev/sdb, missing codepage or helper program, or other error."<br />
<br />
I tried on the latest antiX live boot too and it didnt mount there either.<br />
it was able to mount the last time i used it on Linux Mint XFCE (yesterday)<br />
it isnt showing up in File manager on Windows 11<br />
<br />
i would appreciate if someone could help]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[03-06-26 Wiki and Status pages temporarily down]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9934</link>
			<pubDate>Fri, 03 Jul 2026 09:21:15 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=2">valtam</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9934</guid>
			<description><![CDATA[Should be back up with a couple of hours from the time of this post.]]></description>
			<content:encoded><![CDATA[Should be back up with a couple of hours from the time of this post.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Dual screen double-wide wallpaper]]></title>
			<link>https://www.linuxliteos.com/forums/showthread.php?tid=9931</link>
			<pubDate>Fri, 26 Jun 2026 00:20:58 +0800</pubDate>
			<dc:creator><![CDATA[<a href="https://www.linuxliteos.com/forums/member.php?action=profile&uid=3121">lintek</a>]]></dc:creator>
			<guid isPermaLink="false">https://www.linuxliteos.com/forums/showthread.php?tid=9931</guid>
			<description><![CDATA[I've forgotten how to stretch a single (double-wide) wallpaper across both screens of my dual monitor PC setup.<br />
<br />
Anyone?]]></description>
			<content:encoded><![CDATA[I've forgotten how to stretch a single (double-wide) wallpaper across both screens of my dual monitor PC setup.<br />
<br />
Anyone?]]></content:encoded>
		</item>
	</channel>
</rss>