Installing Windows 2000 on Qemu: Difference between revisions

From Computer History Wiki
Jump to navigationJump to search
No edit summary
No edit summary
 
(3 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>


create a 4GB disk...
I like to redirect the RDP protocol into the VM, I picked the arbitrary port 4444...
<pre>
-redir tcp:4444::3389
</pre>


<pre>qemu-img create -f qcow2 windows2000.disk 4G</pre>
And of course, not everyone requires audio..
<pre>
-soundhw sb16,adlib
</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>
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>


== post install ==
With Windows 2000 installed, you can safely install service pack 4..
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=DC27B8C6-2A5A-4399-AD3D-4A97A25F41D9&displaylang=en Express install]
Line 24: Line 28:


That's about it!
That's about it!
[[Category:QEMU Tutorials]]

Latest revision as of 01: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!