<?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 Topics				            </title>
            <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/</link>
            <description>MintPPC Discussion Board</description>
            <language>en</language>
            <lastBuildDate>Tue, 12 May 2026 06:31:23 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <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/</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/</guid>
                    </item>
				                    <item>
                        <title>Full Mint Power ISO / DVD installer</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/full-mint-power-iso-dvd-installer/</link>
                        <pubDate>Sat, 21 Mar 2026 05:29:59 +0000</pubDate>
                        <description><![CDATA[Hello,
i have tried quit a lot, but my dual core G5 2004, is not able to see any files on USB drivers in Open firmware. Image is fine, Linux is it and able to get files list through command...]]></description>
                        <content:encoded><![CDATA[<p>Hello,</p>
<p>i have tried quit a lot, but my dual core G5 2004, is not able to see any files on USB drivers in Open firmware. Image is fine, Linux is it and able to get files list through commands from other storage device fine, but never on USB. im sure about right alias etc.. There is simply not device list usb flashdisk as nothing is connect, only usb keyboard + mouse..</p>
<p>  I suspect that not all USB sticks are compatible, my is Sandisk USB 3. maybe that is the problem. Its 20 GB image, so i not have other so big flashdrives free and its erasing whole disk, what is not ideal for me.<br />  BTW writing data to flashdrive takes a lot of time because of majority of it its free place to clone it to target.. but im partition resize could be done easily through command added to installer, instead of copying 10 GB of raw data.. or install can create bigger partion from the start and use something more clever than dd.</p>
<p> So for me it would be much better to have some live / install Dual layer iso, real data are smaller than 8.5.. i know that there is Debian netinstall, but its slow with downloading nad i has broken grub etc.</p>
<p>  I tried to somehow convert USB data to ISO DVD fomat, b make some install iso, proven to be beyond my skils, because USB are using 2 partitions and there some USB specific data it seems and extracting data from img file with 7zip not worked for all the data. <br />  Also make new image from already made USB installer, could bypass 7zip extraction problem, but simply copy all data to 1 partition / folder and make iso from its not enough.</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>Ruthan Ruthan</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/full-mint-power-iso-dvd-installer/</guid>
                    </item>
				                    <item>
                        <title>Dual Monitor-Extended Desktop MacPPC G5, Radeon GPU</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/dual-monitor-extended-desktop-macppc-g5-radeon-gpu/</link>
                        <pubDate>Wed, 31 Dec 2025 03:04:58 +0000</pubDate>
                        <description><![CDATA[The Mac uses a Radeon 9600XT GPU. Many thanks to the assistance from @Jeroen Diederen .I have two monitors attached to the Radeon card. One is a Samsung 32” hooked up to the DVI port, the ot...]]></description>
                        <content:encoded><![CDATA[<p><span>The Mac uses a Radeon 9600XT GPU. Many thanks to the assistance from </span><a id="js-XFUniqueId63" class="username" href="https://forums.macrumors.com/members/1189182/" data-xf-init="member-tooltip" data-user-id="1189182" data-username="@Jeroen Diederen">@Jeroen Diederen</a><span> .</span><br /><br /><span>I have two monitors attached to the Radeon card. One is a Samsung 32” hooked up to the DVI port, the other is a 20” Apple Cinema Display attached to the Apple Cinema Display port (VGA).</span><br /><br /><span>It will not boot successfully with both monitors attached when powering up the G5. It only boots successfully with the DVI monitor attached.</span><br /><br /><span>Once the desktop is loaded, I can attach the Apple Cinema Display, and after setting the resolution to 1680X1050 on the Samsung, the Apple Monitor will show a “mirrored” desktop. I cannot get the displays set to show an extended desktop. </span><br /><br /><span>The Monitors preference, and ARandR both see and recognize the two monitors but neither has the ability to extend the desktop.</span><br /><br /><span>I am able to boot up in XFCE as well as MintPPC64. When booting in XFCE, the Displays preference actually has a check box to display the desktop as mirrored. Unchecking that box kills the Apple Display (goes black).</span><br /><br /><span>I have run Xorg -configure and the xorg.conf shows the existence of both monitors. I’m just not sure how to change the file to do the following:</span><br /><br /><span>1) start up properly with both monitors attached</span><br /><span>2) show an extended desktop</span><br /><br /><span>If anyone has done this successfully, I’d love to know what was done to get this configuration to work.</span></p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>Michael Teply</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/dual-monitor-extended-desktop-macppc-g5-radeon-gpu/</guid>
                    </item>
				                    <item>
                        <title>Installation problems.</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/</link>
                        <pubDate>Mon, 15 Dec 2025 21:42:04 +0000</pubDate>
                        <description><![CDATA[Is there a new installation procedures for putting in mint power PC Linux for the G4 Mac notebooks and Power Mac g5s? I tried to install following the instructions on the website and it keep...]]></description>
                        <content:encoded><![CDATA[<p>Is there a new installation procedures for putting in mint power PC Linux for the G4 Mac notebooks and Power Mac g5s? I tried to install following the instructions on the website and it keeps on giving me an error when it's trying to load the software. I'm not sure if Debian Linux has changed something in the repositories.</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>Charles Julian</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/installation-problems/</guid>
                    </item>
				                    <item>
                        <title>iMac G5 graphics issue</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/imac-g5-graphics-issue/</link>
                        <pubDate>Mon, 15 Dec 2025 10:05:24 +0000</pubDate>
                        <description><![CDATA[Hello,
I&#039;m trying to get MintPPC up and running on an iMac G5 20&quot; which has a 64MB AGP Geforce FX 5200 Ultra. It needed a couple of hardware repairs and I did initially suspect the graphics...]]></description>
                        <content:encoded><![CDATA[<p>Hello,</p>
<p>I'm trying to get MintPPC up and running on an iMac G5 20" which has a 64MB AGP Geforce FX 5200 Ultra. It needed a couple of hardware repairs and I did initially suspect the graphics issue was hardware related. However everything works perfectly on Mac OS X.</p>
<p>I installed using the live USB method and have updated since. The issue is that soon into boot (I think as soon as the Nouveau driver starts loading) there is spectacular screen tearing. I can use Mint absolutely fine over SSH and VNC. I found another live PPC distro Adelie yesterday (also Debian based I think?) and exactly the same thing happened. I have tried to install various verions of Debian but all failed due to dodgy repos.</p>
<p>There seems to have been issues with the video drivers on this iMac back in 2015 with Kernel 3/4 but any fixes appear to have been added to later kernels.</p>
<p>I have tried everything suggested in this forum and others and I'm totally stumped. I have attached a couple of photos and a short video as well as a dump of the boot log.</p>
<p>May be a lost cause but I'd love to get Mint working on this thing.</p>
<p>Thanks in advance!</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>Alan Cowie</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/imac-g5-graphics-issue/</guid>
                    </item>
				                    <item>
                        <title>Blender</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/blender/</link>
                        <pubDate>Tue, 25 Nov 2025 03:16:44 +0000</pubDate>
                        <description><![CDATA[I installed blender from the Repository for my MintPPC64. When I try to run it it said that I did not have the right opengl version. Is there a fix for this?]]></description>
                        <content:encoded><![CDATA[<p style="text-align: justify">I installed blender from the Repository for my MintPPC64. When I try to run it it said that I did not have the right opengl version. Is there a fix for this?</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>Charles Julian</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/blender/</guid>
                    </item>
				                    <item>
                        <title>Web Browser/Sound</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/web-browser-sound/</link>
                        <pubDate>Wed, 19 Nov 2025 03:13:18 +0000</pubDate>
                        <description><![CDATA[I just Install MintPPC64 and it is up and running. I followed all the installation instructions. The only problems I am having is that Sealion  and Brassmonkey is not working. It starts to l...]]></description>
                        <content:encoded><![CDATA[<p>I just Install MintPPC64 and it is up and running. I followed all the installation instructions. The only problems I am having is that Sealion  and Brassmonkey is not working. It starts to load ,but it never comes up. My sound is not working as well. I also followed the instructions on setting up the sound that was posted on the website,but it still does not work. Any help would be appreciated.</p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>Charles Julian</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/web-browser-sound/</guid>
                    </item>
				                    <item>
                        <title>&quot;Random?&quot; installation problem.</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/random-installation-problem/</link>
                        <pubDate>Sun, 16 Nov 2025 19:39:52 +0000</pubDate>
                        <description><![CDATA[Hi, two days ago I installed Mint PPC64 on my G5 without any problems. Today I decided to install MintPPC64 on a different drive, and here&#039;s a &quot;surprise&quot; (I&#039;ve included a photo). The problem...]]></description>
                        <content:encoded><![CDATA[<p>Hi, two days ago I installed Mint PPC64 on my G5 without any problems. Today I decided to install MintPPC64 on a different drive, and here's a "surprise" (I've included a photo). The problem isn't very painful because I was able to continue the installation and install the missing files (e.g., the nouveau driver, firmware, lxdm) after rebooting. However, more importantly, I can't install gvfs :(</p>
<p>Regards,</p>
<p>Kristoffer</p>
<div id="wpfa-1158" class="wpforo-attached-file"><a class="wpforo-default-attachment" href="//www.u58733p55594.web0093.zxcs-klant.nl/wp-content/uploads/wpforo/default_attachments/1763322212-log.jpg" target="_blank" title="log.jpg"><i class="fas fa-paperclip"></i>&nbsp;log.jpg</a></div>]]></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/random-installation-problem/</guid>
                    </item>
				                    <item>
                        <title>Libreoffice</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/libreoffice/</link>
                        <pubDate>Fri, 14 Nov 2025 21:57:37 +0000</pubDate>
                        <description><![CDATA[Does Mintppc32 have Libreoffice available? Or is there some other office program available. Thank you again for your help. &#x1f60a;]]></description>
                        <content:encoded><![CDATA[<p>Does Mintppc32 have Libreoffice available? Or is there some other office program available. Thank you again for your help. &#x1f60a; </p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>Charles Julian</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/libreoffice/</guid>
                    </item>
				                    <item>
                        <title>xroar</title>
                        <link>https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/xroar/</link>
                        <pubDate>Fri, 14 Nov 2025 04:36:31 +0000</pubDate>
                        <description><![CDATA[Hello I been looking to see if Mintppc linux has a program available called Xroar.]]></description>
                        <content:encoded><![CDATA[<p>Hello I been looking to see if Mintppc linux has a program available called Xroar. </p>]]></content:encoded>
						                            <category domain="https://www.u58733p55594.web0093.zxcs-klant.nl/community/"></category>                        <dc:creator>Charles Julian</dc:creator>
                        <guid isPermaLink="true">https://www.u58733p55594.web0093.zxcs-klant.nl/community/user-issues/xroar/</guid>
                    </item>
							        </channel>
        </rss>
		