<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Installing AIX on Qemu!	</title>
	<atom:link href="https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/feed/" rel="self" type="application/rss+xml" />
	<link>https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/</link>
	<description>Fun with Virtualization</description>
	<lastBuildDate>Fri, 11 Aug 2023 07:32:32 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>
		By: neozeed		</title>
		<link>https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-336437</link>

		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Fri, 11 Aug 2023 07:32:32 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=9373#comment-336437</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-336405&quot;&gt;Aix&lt;/a&gt;.

&lt;a href=&quot;https://archive.org/details/aix433_qemu&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow ugc&quot;&gt;aix433_qemu&lt;/a&gt; is still online, as is the &lt;a href=&quot;https://github.com/neozeed/qemu-a0p-20190406-aix-boots&quot; target=&quot;_blank&quot; rel=&quot;noopener nofollow ugc&quot;&gt;qemu source&lt;/a&gt;.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-336405">Aix</a>.</p>
<p><a href="https://archive.org/details/aix433_qemu" target="_blank" rel="noopener nofollow ugc">aix433_qemu</a> is still online, as is the <a href="https://github.com/neozeed/qemu-a0p-20190406-aix-boots" target="_blank" rel="noopener nofollow ugc">qemu source</a>.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aix		</title>
		<link>https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-336405</link>

		<dc:creator><![CDATA[Aix]]></dc:creator>
		<pubDate>Thu, 10 Aug 2023 20:12:54 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=9373#comment-336405</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-212075&quot;&gt;neozeed&lt;/a&gt;.

Uploads taken down :(]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-212075">neozeed</a>.</p>
<p>Uploads taken down 🙁</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Zaki Jaaskelainen		</title>
		<link>https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-332708</link>

		<dc:creator><![CDATA[Zaki Jaaskelainen]]></dc:creator>
		<pubDate>Wed, 28 Jun 2023 13:49:40 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=9373#comment-332708</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-332705&quot;&gt;neozeed&lt;/a&gt;.

AIX 7.2 is supported under KVM with the support for Nutanix servers IBM added to this version. I have used with no major problems in a QEMU VM on top of Fedora 35 to 38.. Virtual SCSI with multipathing will also work well but support for multiple CPU cores seems to be unstable.
Here is the command line for launching a Power8 VM running AIX 7.2 TL5 SP3 with 8GB RAM, 3 dual-pathed virtual SCSI disks. I used two of these VMs for playing with GPFS where the two VMs shared the second and third disks. The option needs to be modified for the first boot from virtual DVD for installing AIX:
qemu-system-ppc64 -machine pseries -cpu power8 -m 8192 -serial stdio \
-device spapr-vscsi,id=scsi0 \
    -device scsi-hd,drive=drive0,bus=scsi0.0,channel=0,scsi-id=0,lun=0,serial=0000000000000000 \
    -drive file=/home/aix1/rootvg.img,if=none,cache=none,format=raw,file.locking=off,id=drive0 \
-device spapr-vscsi,id=scsi1 \
    -device scsi-hd,drive=drive1,bus=scsi1.0,channel=0,scsi-id=0,lun=0,serial=0000000000000000 \
    -drive file=/home/aix1/rootvg.img,if=none,cache=none,format=raw,file.locking=off,id=drive1 \
-device spapr-vscsi,id=scsi2 \
    -device scsi-hd,drive=drive2,bus=scsi2.0,channel=0,scsi-id=0,lun=0,serial=0000000000000001 \
    -drive file.filename=/home/aix1/datavg.img,file.locking=off,format=raw,if=none,cache=none,id=drive2 \
    -device scsi-hd,drive=drive3,bus=scsi2.0,channel=0,scsi-id=1,lun=0,serial=0000000000000002 \
    -drive file.filename=/home/aix1/caa.img,file.locking=off,format=raw,if=none,cache=none,id=drive3 \
-device spapr-vscsi,id=scsi3 \
    -device scsi-hd,drive=drive4,bus=scsi3.0,channel=0,scsi-id=0,lun=0,serial=0000000000000001 \
    -drive file.filename=/home/aix1/datavg.img,file.locking=off,format=raw,if=none,cache=none,id=drive4 \
    -device scsi-hd,drive=drive5,bus=scsi3.0,channel=0,scsi-id=1,lun=0,serial=0000000000000002 \
    -drive file.filename=/home/aix1/caa.img,file.locking=off,format=raw,if=none,cache=none,id=drive5 \
-device spapr-vscsi,id=scsi4 \
    -device scsi-cd,drive=drive6,bus=scsi4.0,channel=0,scsi-id=0,lun=0 \
    -drive file.filename=/home/aix1/AIX_v7.2_Install_7200-05-03-2148_flash__122021_LCD8236412.iso,format=raw,if=none,cache=none,id=drive6 \
-device spapr-vlan,netdev=ent0,mac=aa:e8:f1:1b:01:18 \
    -netdev tap,ifname=tap0,id=ent0 \
-nographic \
-monitor tcp::9020,server,nowait \
-prom-env &quot;boot-command=boot disk:&quot;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-332705">neozeed</a>.</p>
<p>AIX 7.2 is supported under KVM with the support for Nutanix servers IBM added to this version. I have used with no major problems in a QEMU VM on top of Fedora 35 to 38.. Virtual SCSI with multipathing will also work well but support for multiple CPU cores seems to be unstable.<br />
Here is the command line for launching a Power8 VM running AIX 7.2 TL5 SP3 with 8GB RAM, 3 dual-pathed virtual SCSI disks. I used two of these VMs for playing with GPFS where the two VMs shared the second and third disks. The option needs to be modified for the first boot from virtual DVD for installing AIX:<br />
qemu-system-ppc64 -machine pseries -cpu power8 -m 8192 -serial stdio \<br />
-device spapr-vscsi,id=scsi0 \<br />
    -device scsi-hd,drive=drive0,bus=scsi0.0,channel=0,scsi-id=0,lun=0,serial=0000000000000000 \<br />
    -drive file=/home/aix1/rootvg.img,if=none,cache=none,format=raw,file.locking=off,id=drive0 \<br />
-device spapr-vscsi,id=scsi1 \<br />
    -device scsi-hd,drive=drive1,bus=scsi1.0,channel=0,scsi-id=0,lun=0,serial=0000000000000000 \<br />
    -drive file=/home/aix1/rootvg.img,if=none,cache=none,format=raw,file.locking=off,id=drive1 \<br />
-device spapr-vscsi,id=scsi2 \<br />
    -device scsi-hd,drive=drive2,bus=scsi2.0,channel=0,scsi-id=0,lun=0,serial=0000000000000001 \<br />
    -drive file.filename=/home/aix1/datavg.img,file.locking=off,format=raw,if=none,cache=none,id=drive2 \<br />
    -device scsi-hd,drive=drive3,bus=scsi2.0,channel=0,scsi-id=1,lun=0,serial=0000000000000002 \<br />
    -drive file.filename=/home/aix1/caa.img,file.locking=off,format=raw,if=none,cache=none,id=drive3 \<br />
-device spapr-vscsi,id=scsi3 \<br />
    -device scsi-hd,drive=drive4,bus=scsi3.0,channel=0,scsi-id=0,lun=0,serial=0000000000000001 \<br />
    -drive file.filename=/home/aix1/datavg.img,file.locking=off,format=raw,if=none,cache=none,id=drive4 \<br />
    -device scsi-hd,drive=drive5,bus=scsi3.0,channel=0,scsi-id=1,lun=0,serial=0000000000000002 \<br />
    -drive file.filename=/home/aix1/caa.img,file.locking=off,format=raw,if=none,cache=none,id=drive5 \<br />
-device spapr-vscsi,id=scsi4 \<br />
    -device scsi-cd,drive=drive6,bus=scsi4.0,channel=0,scsi-id=0,lun=0 \<br />
    -drive file.filename=/home/aix1/AIX_v7.2_Install_7200-05-03-2148_flash__122021_LCD8236412.iso,format=raw,if=none,cache=none,id=drive6 \<br />
-device spapr-vlan,netdev=ent0,mac=aa:e8:f1:1b:01:18 \<br />
    -netdev tap,ifname=tap0,id=ent0 \<br />
-nographic \<br />
-monitor tcp::9020,server,nowait \<br />
-prom-env &#8220;boot-command=boot disk:&#8221;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: neozeed		</title>
		<link>https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-332705</link>

		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Wed, 28 Jun 2023 12:48:47 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=9373#comment-332705</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-332704&quot;&gt;Curious&lt;/a&gt;.

you&#039;d need to investigate the later versions of AIX that are 64bit, along with the hardware, the configs, and all the lockouts IBM has in place to prevent you from emulating a 64bit RS/6000.

I&#039;ve seen someone do it, but it was heavily modified.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-332704">Curious</a>.</p>
<p>you&#8217;d need to investigate the later versions of AIX that are 64bit, along with the hardware, the configs, and all the lockouts IBM has in place to prevent you from emulating a 64bit RS/6000.</p>
<p>I&#8217;ve seen someone do it, but it was heavily modified.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Curious		</title>
		<link>https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-332704</link>

		<dc:creator><![CDATA[Curious]]></dc:creator>
		<pubDate>Wed, 28 Jun 2023 12:38:18 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=9373#comment-332704</guid>

					<description><![CDATA[Team is there anyway to get this uplifter to 4GB of RAM?]]></description>
			<content:encoded><![CDATA[<p>Team is there anyway to get this uplifter to 4GB of RAM?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ayman		</title>
		<link>https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-327598</link>

		<dc:creator><![CDATA[ayman]]></dc:creator>
		<pubDate>Wed, 12 Apr 2023 11:02:00 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=9373#comment-327598</guid>

					<description><![CDATA[Hey , 
please were can i downlowd fichier ISO d&#039;aix]]></description>
			<content:encoded><![CDATA[<p>Hey ,<br />
please were can i downlowd fichier ISO d&#8217;aix</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mekenis		</title>
		<link>https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-313519</link>

		<dc:creator><![CDATA[Mekenis]]></dc:creator>
		<pubDate>Fri, 09 Dec 2022 16:40:35 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=9373#comment-313519</guid>

					<description><![CDATA[I just downloaded the boot ROM for the RS/6000 7020 40p plus the patch files to upgrade it. I wonder if it will work with QEMU. The READE says;

The boot rom for the IBM RS/6000 40p workstation, dumped and identical to the images on the floppies.
As a bonus, the exe files are the original IBM firmware updates/SMS disks with different boot ROM revisions. 702040p.exe has the password of &quot;**RS/6000**&quot;.]]></description>
			<content:encoded><![CDATA[<p>I just downloaded the boot ROM for the RS/6000 7020 40p plus the patch files to upgrade it. I wonder if it will work with QEMU. The READE says;</p>
<p>The boot rom for the IBM RS/6000 40p workstation, dumped and identical to the images on the floppies.<br />
As a bonus, the exe files are the original IBM firmware updates/SMS disks with different boot ROM revisions. 702040p.exe has the password of &#8220;**RS/6000**&#8221;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: serak		</title>
		<link>https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-303457</link>

		<dc:creator><![CDATA[serak]]></dc:creator>
		<pubDate>Thu, 28 Apr 2022 16:10:21 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=9373#comment-303457</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-222265&quot;&gt;neozeed&lt;/a&gt;.

does it now qemu 7 has been released]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-222265">neozeed</a>.</p>
<p>does it now qemu 7 has been released</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: neozeed		</title>
		<link>https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-280593</link>

		<dc:creator><![CDATA[neozeed]]></dc:creator>
		<pubDate>Fri, 13 Aug 2021 04:31:59 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=9373#comment-280593</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-280583&quot;&gt;wzis&lt;/a&gt;.

In the discord one guy has managed to install 7.  Part of the problem is the storage back end doesn&#039;t work right, so he rigged up something to use iSCSI.  There was some other mod about removing errors, I forget but it can be done.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-280583">wzis</a>.</p>
<p>In the discord one guy has managed to install 7.  Part of the problem is the storage back end doesn&#8217;t work right, so he rigged up something to use iSCSI.  There was some other mod about removing errors, I forget but it can be done.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: wzis		</title>
		<link>https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-280583</link>

		<dc:creator><![CDATA[wzis]]></dc:creator>
		<pubDate>Fri, 13 Aug 2021 03:58:41 +0000</pubDate>
		<guid isPermaLink="false">https://virtuallyfun.com/wordpress/?p=9373#comment-280583</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-212421&quot;&gt;neozeed&lt;/a&gt;.

Did anyone successfully run an AIX6.1 on Qemu？I&#039;m very interested in that or run an AIX5.3 64bit on Qemu.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://virtuallyfun.com/2019/04/22/installing-aix-on-qemu/comment-page-1/#comment-212421">neozeed</a>.</p>
<p>Did anyone successfully run an AIX6.1 on Qemu？I&#8217;m very interested in that or run an AIX5.3 64bit on Qemu.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
