<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									MintPPC Forum - Recent Posts				            </title>
            <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/</link>
            <description>MintPPC Discussion Board</description>
            <language>en</language>
            <lastBuildDate>Mon, 13 Apr 2026 22:58:01 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Full Mint Power ISO / DVD installer</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/full-mint-power-iso-dvd-installer/#post-391</link>
                        <pubDate>Mon, 13 Apr 2026 09:23:49 +0000</pubDate>
                        <description><![CDATA[Did you get it sorted out?]]></description>
                        <content:encoded><![CDATA[<p>Did you get it sorted out?</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>admin</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/full-mint-power-iso-dvd-installer/#post-391</guid>
                    </item>
				                    <item>
                        <title> Make Log in Screen (LightDM) use same Display Properties as When Logged in</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/tutorial-make-log-in-screen-lightdm-use-same-display-properties-as-when-logged-in/#post-390</link>
                        <pubDate>Sat, 04 Apr 2026 07:16:50 +0000</pubDate>
                        <description><![CDATA[Hey everyone,I recently figured this one out, and figured I&#039;d document it here for posterity.If you are anything like me, you have multiple screens rotated in different directions which work...]]></description>
                        <content:encoded><![CDATA[<p>Hey everyone,<br /><br />I recently figured this one out, and figured I'd document it here for posterity.<br /><br />If you are anything like me, you have multiple screens rotated in different directions which works fine once logged in, but your log-in screen is all messed up.<br /><br />As an example, here is how I have my screens set up in Cinnamon:</p>
<div class="inline-attachment">
<dl class="thumbnail">
<dt><a href="https://forums.linuxmint.com/download/file.php?id=73874&amp;mode=view"><img class="postimage" title="01.png (39.14 KiB) Viewed 25400 times" src="https://forums.linuxmint.com/download/file.php?id=73874&amp;t=1" alt="01.png" /></a></dt>
</dl>
</div>
<p>A 20" 1600x1200 screen in portrait rotated counter clockwise on the left<br />A 43" 3840x2160 screen in lanscape in the center<br />Another 20" 1600x1200 screen in portrait rotated clockwise on the right.<br /><br />Lets just say that on the system login screen (LightDM) the screens are not configured like this, and if you knock your mouse pointer off the center one, it can be surprisingly difficult to get it back, tilting your head sideways and trying to navigate the pointer to the right place.<br /><br />It also looks cleaner if your login matches the layout you want, so here is how to achieve that.<br /><br /><strong class="text-strong">1.) Configure your screens how you want them in the Display properties settings.</strong><br /><br /><strong class="text-strong">2.) Install and use arandr to create an xrandr string from your preferred layout.</strong><br /><br />Open a terminal and do the following:</p>
<div class="codebox">
<p>Code: <a href="https://forums.linuxmint.com/viewtopic.php?p=2091785#">Select all</a></p>
<pre contenteditable="false"><code>sudo apt update
sudo apt install arandr
</code></pre>
</div>
<p>Run arandr from the GUI menu:</p>
<div class="inline-attachment">
<dl class="thumbnail">
<dt><a href="https://forums.linuxmint.com/download/file.php?id=73875&amp;mode=view"><img class="postimage" title="02.png (27.75 KiB) Viewed 25400 times" src="https://forums.linuxmint.com/download/file.php?id=73875&amp;t=1" alt="02.png" /></a></dt>
</dl>
</div>
<p>You should see your screen layout as you have it configured.<br /><br />If you are happy with it as is, then save it to an xrandr string:<br /><br />Layout Menu -&gt; Save As<br /><br />Save it somewhere you know where it is, and name it something nice. I chose to put it on my Desktop and name it "lightdm_xrandr.sh"<br /><br /><strong class="text-strong"><br />3.) Prepare the file containing your xrandr string for use:</strong><br /><br />The file contained my somewhat semi-complicated xrandr string:</p>
<div class="codebox">
<p>Code: <a href="https://forums.linuxmint.com/viewtopic.php?p=2091785#">Select all</a></p>
<pre contenteditable="false"><code>#!/bin/sh
xrandr --output DisplayPort-0 --primary --mode 3840x2160 --pos 1200x0 --rotate normal --output DisplayPort-1 --mode 1600x1200 --pos 0x560 --rotate left --output DisplayPort-2 --off --output HDMI-A-0 --mode 1600x1200 --pos 5040x560 --rotate right</code></pre>
</div>
<p>Unless you have the exact screen layout I do, yours will look different.<br /><br />For good measure I decided to edit it and add an "exit 0" to the end. This is probably not necessary, but it is proper.</p>
<div class="codebox">
<p>Code: <a href="https://forums.linuxmint.com/viewtopic.php?p=2091785#">Select all</a></p>
<pre contenteditable="false"><code>sudo nano ~/Desktop/lightdm_xrandr.sh</code></pre>
</div>
<div class="codebox">
<p>Code: <a href="https://forums.linuxmint.com/viewtopic.php?p=2091785#">Select all</a></p>
<pre contenteditable="false"><code>#!/bin/sh
xrandr --output DisplayPort-0 --primary --mode 3840x2160 --pos 1200x0 --rotate normal --output DisplayPort-1 --mode 1600x1200 --pos 0x560 --rotate left --output DisplayPort-2 --off --output HDMI-A-0 --mode 1600x1200 --pos 5040x560 --rotate right
exit 0</code></pre>
</div>
<p>after saving, we should check to make sure it is executable. arandr seems to do this by default, but it doesn't hurt to check:</p>
<div class="codebox">
<p>Code: <a href="https://forums.linuxmint.com/viewtopic.php?p=2091785#">Select all</a></p>
<pre contenteditable="false"><code># ls -l ~/Desktop/lightdm_xrandr.sh
-rwx------ 1 matt matt 263 Oct 22 23:38 lightdm_xrandr.sh</code></pre>
</div>
<p>-rwx------ -&gt; Read Write eXecute. Permissions are correct (in Mints default bash config the file should also be listed as green if it is executable)<br /><br />If it is not executable you can make it so with the following command:</p>
<div class="codebox">
<p>Code: <a href="https://forums.linuxmint.com/viewtopic.php?p=2091785#">Select all</a></p>
<pre contenteditable="false"><code>chmod 700 ~/Desktop/lightdm_xrandr.sh</code></pre>
</div>
<p>Then move this script to /etc/lightdm</p>
<div class="codebox">
<p>Code: <a href="https://forums.linuxmint.com/viewtopic.php?p=2091785#">Select all</a></p>
<pre contenteditable="false"><code>sudo mv ~/Desktop/lightdm_xrandr.sh /etc/lightdm/</code></pre>
</div>
<p>So now we have a "script" that sets the proper screen orientation. Now we have to tell lightdm to execute it on startup.<br /><br /><strong class="text-strong">4.) Tell lightdm to execute your xrandr string on boot:</strong><br /><br />First we have to find the config file. Since the file may differ by version or specific configuration, rather than tell you which file I edited, I will show you how to find yours, just in case yours is different.<br /><br />Run lightdm --show-config to display the current configuration.</p>
<div class="codebox">
<p>Code: <a href="https://forums.linuxmint.com/viewtopic.php?p=2091785#">Select all</a></p>
<pre contenteditable="false"><code># lightdm --show-config

   
A  allow-guest=false
C  greeter-wrapper=/usr/lib/lightdm/lightdm-greeter-session
D  guest-wrapper=/usr/lib/lightdm/lightdm-guest-session
E  xserver-command=X -core
F  greeter-session=slick-greeter
G  user-session=cinnamon

   
B  backup-logs=false

Sources:
A  /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf
B  /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf
C  /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf
D  /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf
E  /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf
F  /usr/share/lightdm/lightdm.conf.d/90-slick-greeter.conf
G  /etc/lightdm/lightdm.conf.d/70-linuxmint.conf</code></pre>
</div>
<p>Look for a config file that says something about "slick greeter". In my case this was:<br />/usr/share/lightdm/lightdm.conf.d/90-slick-greeter.conf<br /><br />Edit this file:</p>
<div class="codebox">
<p>Code: <a href="https://forums.linuxmint.com/viewtopic.php?p=2091785#">Select all</a></p>
<pre contenteditable="false"><code># sudo nano /usr/share/lightdm/lightdm.conf.d/90-slick-greeter.conf
</code></pre>
</div>
<p>By default it should look like this:</p>
<div class="codebox">
<p>Code: <a href="https://forums.linuxmint.com/viewtopic.php?p=2091785#">Select all</a></p>
<pre contenteditable="false"><code>
greeter-session=slick-greeter</code></pre>
</div>
<p>Add this line between  and greeter-sessiion as follows:<br /><br />greeter-setup-script=/etc/lightdm/lightdm_xrandr.sh</p>
<div class="codebox">
<p>Code: <a href="https://forums.linuxmint.com/viewtopic.php?p=2091785#">Select all</a></p>
<pre contenteditable="false"><code>
greeter-setup-script=/etc/lightdm/lightdm_xrandr.sh
greeter-session=slick-greeter</code></pre>
</div>
<p>Reboot. Your login screen should now be oriented the same as your desktop once logged in.<br /><br />I hope this helps someone else.</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>admin</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/tutorial-make-log-in-screen-lightdm-use-same-display-properties-as-when-logged-in/#post-390</guid>
                    </item>
				                    <item>
                        <title>RE: Installation problems.</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-389</link>
                        <pubDate>Fri, 27 Mar 2026 23:54:17 +0000</pubDate>
                        <description><![CDATA[I will add those required packages and then we will see if you can downgrade mesa. I will do it later today, I will tell you when it’s done.
Edit: it should work now]]></description>
                        <content:encoded><![CDATA[<p>I will add those required packages and then we will see if you can downgrade mesa. I will do it later today, I will tell you when it’s done.</p>
<p>Edit: it should work now</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>admin</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-389</guid>
                    </item>
				                    <item>
                        <title>RE: Installation problems.</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-388</link>
                        <pubDate>Fri, 27 Mar 2026 18:09:51 +0000</pubDate>
                        <description><![CDATA[@admin 
Thank you,
Installation went PERFECTLY on my FireWire SSD. Boots fine.
But Mesa libs still are problematic
&nbsp;
root@debian:/home/g5# chmod u+x mesa-64root@debian:/home/g5#./m...]]></description>
                        <content:encoded><![CDATA[<p>@admin </p>
<p>Thank you,</p>
<p>Installation went PERFECTLY on my FireWire SSD. Boots fine.</p>
<p>But Mesa libs still are problematic</p>
<p>&nbsp;</p>
<p>root@debian:/home/g5# chmod u+x mesa-64<br /><br />root@debian:/home/g5#./mesa-64<br /><br />Hit:1 http://deb.debian.org/debian-ports sid InRelease<br /><br />Hit:2 http://deb.debian.org/debian-ports unreleased InRelease<br /><br />Hit:3 Hit:4 http://u58733p55594.web0093.zxcs-klant.nl/repo-64 unstable InRelease http://u58733p55594.web0093.zxcs-klant.nl/xeno74./ InRelease<br /><br />Get:5 http://u58733p55594.web0093.zxcs-klant.nl/mesa-64./ InRelease <br /><br />Get:6 http://u58733p55594.web0093.zxcs-klant.nl/mesa-64./ Packages [4,419 BJ<br /><br />Fetched 6,505 B in 14s (481 B/s)<br /><br />All packages are up to date.<br /><br />Warning: Skipping acquire of configured file 'main/source/Sources' as repository 'http://deb.debian.org/debian-ports sid InRelease does not seem to prow<br /><br />Solving dependencies... Error!<br /><br />Notice: Some sources can be modernized. Run 'apt modernize-sources to do so.<br /><br />Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.<br /><br />The following information may help to resolve the situation:<br /><br />Unsatisfied dependencies:<br /><br />libegl-mesa: Depends: libglapi-mesa (= 24.1.6-1) Depends: libxcb-dri2-0 (&gt;= 1.8) but it is not going to be installed<br /><br />libgll-mesa-dri: Depends: libglapi-mesa (= 24.1.6-1) Depends: libllvm17t64 but it is not installable<br /><br />libglx-mesa Depends: libglapi-mesa (= 24.1.6-1)<br /><br />Depends: libxcb-dri2-0 (&gt;= 1.8) but it is not going to be installed mesa-va-drivers: Depends: libllvm17t64 but it is not installable<br /><br />Depends: libxcb-dri2-0 (&gt;= 1.8) but it is not going to be installed mesa-vdpau-drivers: Depends: libvdpaul but it is not going to be installed<br /><br />Depends: libllvm17t64 but it is not installable<br /><br />Depends: libxcb-dri2-0 (&gt;= 1.8) but it is not going to be installed mesa-vulkan-drivers: Depends: libllvm17t64 but it is not installable<br /><br />Error: Unable to satisfy dependencies. Reached two conflicting assignments:<br /><br />1. mesa-va-drivers:ppc64-24.1.6-1 is selected for install<br /><br />but none of the choices are installable:<br /><br />2. mesa-va-drivers:ppc64-24.1.6-1 Depends libllvm17t64<br /><br /><br /><br />libegl-mesa set on hold.<br /><br />libgbml set on hold.<br /><br />libgll-mesa-dri set on hold.<br /><br />libglx-mesae set on hold.<br /><br />mesa-va-drivers set on hold.<br /><br />mesa-vdpau-drivers set on hold.<br /><br />mesa-vulkan-drivers set on hold.<br /><br />root@debian:/home/g5# nano /etc/apt/sources.list<br /><br />root@debian:/home/g5#<br /><br /></p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>Kristoffer Fin</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-388</guid>
                    </item>
				                    <item>
                        <title>RE: Installation problems.</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-387</link>
                        <pubDate>Fri, 27 Mar 2026 07:08:54 +0000</pubDate>
                        <description><![CDATA[Try again, I think I fixed it. The mesa problem should be gone now, as well as the sylpheed problem.]]></description>
                        <content:encoded><![CDATA[<p>Try again, I think I fixed it. The mesa problem should be gone now, as well as the sylpheed problem.</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>admin</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-387</guid>
                    </item>
				                    <item>
                        <title>RE: Installation problems.</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-386</link>
                        <pubDate>Fri, 27 Mar 2026 03:11:48 +0000</pubDate>
                        <description><![CDATA[I will replace sylpheed with claws-mail. It is another lightweight email client which is still supported in Debian sid.]]></description>
                        <content:encoded><![CDATA[<p>I will replace sylpheed with claws-mail. It is another lightweight email client which is still supported in Debian sid.</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>admin</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-386</guid>
                    </item>
				                    <item>
                        <title>RE: Installation problems.</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-385</link>
                        <pubDate>Fri, 27 Mar 2026 01:45:25 +0000</pubDate>
                        <description><![CDATA[@eastone mesa can’t be built right now on ppc64 (since a long time, I will look into this):]]></description>
                        <content:encoded><![CDATA[<p>@eastone mesa can’t be built right now on ppc64 (since a long time, I will look into this):</p>
<p>https://buildd.debian.org/status/package.php?p=mesa&amp;suite=sid</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>admin</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-385</guid>
                    </item>
				                    <item>
                        <title>RE: Installation problems.</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-384</link>
                        <pubDate>Fri, 27 Mar 2026 01:41:29 +0000</pubDate>
                        <description><![CDATA[@eastone thanks for testing! I just noticed that Debian removed sylpheed from sid, therefore it can’t be installed anymore. I will remove sylpheed from the package list in the preseed file....]]></description>
                        <content:encoded><![CDATA[<p>@eastone thanks for testing! I just noticed that Debian removed sylpheed from sid, therefore it can’t be installed anymore. I will remove sylpheed from the package list in the preseed file.</p>
<p>&nbsp;</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>admin</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-384</guid>
                    </item>
				                    <item>
                        <title>RE: Installation problems.</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-383</link>
                        <pubDate>Thu, 26 Mar 2026 15:23:56 +0000</pubDate>
                        <description><![CDATA[And Mesa problem:
&nbsp;
root@debian:/home/g5#./mesa-64
&nbsp;
Hit:1sid InRelease
&nbsp;
Hit:2unreleased InRelease
&nbsp;
Hit:3unstable InRelease
&nbsp;
Hit:4InRelease
&nbsp;
Get...]]></description>
                        <content:encoded><![CDATA[<p>And Mesa problem:</p>
<p>&nbsp;</p>
<p>root@debian:/home/g5#./mesa-64</p>
<p>&nbsp;</p>
<p>Hit:1 http://deb.debian.org/debian-ports sid InRelease</p>
<p>&nbsp;</p>
<p>Hit:2 http://deb.debian.org/debian-ports unreleased InRelease</p>
<p>&nbsp;</p>
<p>Hit:3 http://u58733p55594.web0093.zxcs-klant.nl/repo-64 unstable InRelease</p>
<p>&nbsp;</p>
<p>Hit:4 http://u58733p55594.web0093.zxcs-klant.nl/xeno74./ InRelease</p>
<p>&nbsp;</p>
<p>Get:5 http://u58733p55594.web0093.zxcs-klant.nl/mesa-64./ InRelease  Get:6 http://u58733p55594.web0093.zxcs-klant.nl/mesa-64./ Packages </p>
<p>&nbsp;</p>
<p>Fetched 6,505 B in 14s (468 B/s)</p>
<p>&nbsp;</p>
<p>All packages are up to date.</p>
<p>&nbsp;</p>
<p>Warning: Skipping acquire of configured file 'main/source/Sources' as repository 'http://deb.debian.org/debian-ports sid InRel (sources.list entry misspelt?)</p>
<p>&nbsp;</p>
<p>t Notice: Some sources can be modernized. Run 'apt modernize-sources to do so. Solving dependencies... Error! Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created</p>
<p>&nbsp;</p>
<p>or been moved out of Incoming. The following information may help to resolve the situation:</p>
<p>&nbsp;</p>
<p>Unsatisfied dependencies:</p>
<p>&nbsp;</p>
<p>libegl-mesao: Depends: libglapi-mesa (= 24.1.6-1) Depends: libxcb-dri2-0 (&gt;= 1.8) but it is not going to be installed</p>
<p>&nbsp;</p>
<p>libgll-mesa-dri: Depends: libglapi-mesa (= 24.1.6-1) Depends: libllvm17t64 but it is not installable</p>
<p>&nbsp;</p>
<p>libglx-mesa Depends: libglapi-mesa (= 24.1.6-1)</p>
<p>&nbsp;</p>
<p>Depends: libxcb-dri2-0 (&gt;= 1.8) but it is not going to be installed mesa-va-drivers: Depends: libllvm17t64 but it is not installable</p>
<p>&nbsp;</p>
<p>Depends: libxcb-dri2-0 (&gt;= 1.8) but it is not going to be installed mesa-vdpau-drivers: Depends: libvdpaul but it is not going to be installed Depends: libllvm17t64 but it is not installable Depends: libxcb-dr12-0 (&gt;= 1.8) but it is not going to be installed</p>
<p>&nbsp;</p>
<p>mesa-vulkan-drivers: Depends: libllvm17t64 but it is not installable Error: Unable to satisfy dependencies. Reached two conflicting assignments:</p>
<p>&nbsp;</p>
<p>1. mesa-va-drivers:ppc64-24.1.6-1 is selected for install</p>
<p>&nbsp;</p>
<p>2. mesa-va-drivers:ppc64-24.1.6-1 Depends libllvm17t64 but none of the choices are installable: </p>
<p>&nbsp;</p>
<p>Error: Invalid operation hold root@debian:/home/g5#</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>Kristoffer Fin</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-383</guid>
                    </item>
				                    <item>
                        <title>RE: Installation problems.</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-382</link>
                        <pubDate>Thu, 26 Mar 2026 15:21:57 +0000</pubDate>
                        <description><![CDATA[I can&#039;t attach a picture, so these are the last lines of installation progress:
&nbsp;
Mar 26 11:43:18 in-target: Updating certificates in /etc/ssl/certs...^M
Mar 26 11:43:21 in-target: a...]]></description>
                        <content:encoded><![CDATA[<p>I can't attach a picture, so these are the last lines of installation progress:</p>
<p>&nbsp;</p>
<p>Mar 26 11:43:18 in-target: Updating certificates in /etc/ssl/certs...^M</p>
<p>Mar 26 11:43:21 in-target: added, e removed; done. M</p>
<p>Mar 26 11:43:21 in-target: Running hooks in /etc/ca-certificates/update.d...^M</p>
<p>Mar 26 11:43:21 in-target: done.^M</p>
<p>Mar 26 11:43:21 in-target: Processing triggers for libc-bin (2.42-13)...</p>
<p>Mar 26 11:43:21 in-target: M</p>
<p>Mar 26 11:43:22 pkgsel: installing additional packages</p>
<p>Mar 26 11:43:23 /bin/in-target: warning: /target/etc/mtab won't be updated since it is a symlink.</p>
<p>Mar 26 11:43:24 in-target: Reading package lists...</p>
<p>Mar 26 11:43:24 in-target: Mar 26 11:43:24 in-target: Building dependency tree...</p>
<p>Mar 26 11:43:25 in-target: Mar 26 11:43:25 in-target: Reading state information...</p>
<p>Mar 26 11:43:25 in-target:</p>
<p>26 11:43:25 in-target: Package sylpheed is not available, but is referred to by another package.</p>
<p>Mar Mar 26 11:43:25 in-target: This may mean that the package is missing, has been obsoleted, or</p>
<p>Mar 26 11:43:25 in-target: is only available from another source</p>
<p>Mar 26 11:43:25 in-target:</p>
<p>Mar 26 11:43:25 in-target: E: Package 'sylpheed' has no installation candidate</p>
<p>Mar 26 11:43:26 /bin/in-target: warning: /target/etc/mtab won't be updated since it is a symlink. :  ISO 9660 Extensions: Microsoft Joliet Level 3</p>
<p>Mar 26 11:43:30 kernel</p>
<p>Mar 26 11:43:30 kernel:  ISO 9660 Extensions: RRIP_1991A</p>
<p>Mar 26 11:43:30 kernel:  ISO 9660 Extensions: Microsoft Joliet Level 3</p>
<p>Mar 26 11:43:30 kernel:  ISO 9660 Extensions: RRIP_1991A</p>
<p>Mar 26 11:43:30 main-menu : WARNING **: Configuring 'pkgsel' failed with error code 100</p>
<p>Mar 26 11:43:30 main-menu : WARNING **: Menu item 'pkgsel' failed.</p>
<p>&nbsp;</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>Kristoffer Fin</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/paged/2/#post-382</guid>
                    </item>
							        </channel>
        </rss>
		