Difference between revisions of "Installing Windows 2000 on Qemu"

From Computer History Wiki
Jump to: navigation, search
(New page: Windows 2000 install is a little complicated as there is an issue with a 0 level install and the Qemu IDE controller.. <pre>qemu -L . -hda windows2000.disk -net nic -net user -cdrom windo...)
 
Line 1: Line 1:
 
Windows 2000 install is a little complicated as there is an issue with a 0 level install and the Qemu IDE controller..
 
Windows 2000 install is a little complicated as there is an issue with a 0 level install and the Qemu IDE controller..
 +
 +
create a 4GB disk...
 +
 +
<pre>qemu-img create -f qcow2 windows2000.disk 4G</pre>
 +
 +
Then its a simple matter of giving it enough 'hardware' and the right parameters for the install.
  
 
<pre>qemu -L . -hda windows2000.disk -net nic -net user -cdrom windows2000-pro-server-advanced-MSDN.iso -boot d -win2k-hack -rtc-td-hack -soundhw sb16,adlib</pre>
 
<pre>qemu -L . -hda windows2000.disk -net nic -net user -cdrom windows2000-pro-server-advanced-MSDN.iso -boot d -win2k-hack -rtc-td-hack -soundhw sb16,adlib</pre>
 +
 +
And on the second GUI boot:
 +
 +
<pre>qemu -L . -hda windows2000.disk -net nic -net user -cdrom windows2000-pro-server-advanced-MSDN.iso -win2k-hack -rtc-td-hack -soundhw sb16,adlib</pre>
 +
 +
With Windows 2000 installed, you can safely install service pack 4..
 +
*[http://www.microsoft.com/downloads/details.aspx?familyid=DC27B8C6-2A5A-4399-AD3D-4A97A25F41D9&displaylang=en Express install]
 +
*[http://www.microsoft.com/downloadS/details.aspx?familyid=1001AAF1-749F-49F4-8010-297BD6CA33A0&displaylang=en Network/Download install]
 +
 +
You can also now run Windows 2000 'normally' like this:
 +
 +
<pre>
 +
qemu -L . -hda windows2000.disk -net nic -net user -rtc-td-hack -soundhw sb16,adlib -localtime
 +
</pre>
 +
 +
That's about it!

Revision as of 19:33, 15 August 2009

Windows 2000 install is a little complicated as there is an issue with a 0 level install and the Qemu IDE controller..

create a 4GB disk...

qemu-img create -f qcow2 windows2000.disk 4G

Then its a simple matter of giving it enough 'hardware' and the right parameters for the install.

qemu -L . -hda windows2000.disk -net nic -net user -cdrom windows2000-pro-server-advanced-MSDN.iso -boot d -win2k-hack -rtc-td-hack -soundhw sb16,adlib

And on the second GUI boot:

qemu -L . -hda windows2000.disk -net nic -net user -cdrom windows2000-pro-server-advanced-MSDN.iso -win2k-hack -rtc-td-hack -soundhw sb16,adlib

With Windows 2000 installed, you can safely install service pack 4..

You can also now run Windows 2000 'normally' like this:

qemu -L . -hda windows2000.disk -net nic -net user -rtc-td-hack -soundhw sb16,adlib -localtime

That's about it!