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...)
 
 
(4 intermediate revisions by the same user not shown)
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..
+
[[Image:windows2000onqemu.png|200px|thumb|right|Windows 2000 on Qemu]]
 +
Windows 2000 install is pretty straight forward with Qemu 0.14.0. You don't need to even use that -win2k-hack thing anymore.  Basically run it like this...
 +
<pre>
 +
qemu.exe -L pc-bios -m 512 -hda win2k.disk -net nic,model=pcnet -net user -cpu pentium -cdrom windows2000-pro-server-advanced-MSDN.iso -boot d
 +
</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>
+
I like to redirect the RDP protocol into the VM, I picked the arbitrary port 4444...
 +
<pre>
 +
-redir tcp:4444::3389
 +
</pre>
 +
 
 +
And of course, not everyone requires audio..
 +
<pre>
 +
-soundhw sb16,adlib
 +
</pre>
 +
 
 +
 
 +
== post install ==
 +
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!
 +
 
 +
[[Category:QEMU Tutorials]]

Latest revision as of 03:40, 17 April 2011

Windows 2000 on Qemu

Windows 2000 install is pretty straight forward with Qemu 0.14.0. You don't need to even use that -win2k-hack thing anymore. Basically run it like this...

qemu.exe -L pc-bios -m 512 -hda win2k.disk -net nic,model=pcnet -net user -cpu pentium -cdrom windows2000-pro-server-advanced-MSDN.iso -boot d

I like to redirect the RDP protocol into the VM, I picked the arbitrary port 4444...

-redir tcp:4444::3389

And of course, not everyone requires audio..

-soundhw sb16,adlib 


post install

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!