It's a work in progress, as still haven't gotten everything running ;-)
1. Get the necessary files (www.colinux.org ==> go to downloads).
2. Run the installer (just go through the installation, and select the Debian or the Gentoo file). I installed everything to c:\coLinux , and will refer to it as if you do it the same way.
3. Decompress the Debian or Gentoo image. (It'll look something like gentoo-i586-ext3-2g-deluxe or Debian-3.0r0.ext3.1gb .) You can use WinRAR for this.
4. Decompress vmlinux-modules (use WinRAR again).
5. Open default.colinux.xml in Notepad.
You'll see several parts that need to be adapted.
My file looks like this:
CODE
<?xml version="1.0" encoding="UTF-8"?>
<colinux>
<block_device index="0" path="\DosDevices\C:\coLinux\Debian-3.0r0.ext3.1gb" enabled="true"/>
<block_device index="1" path="\DosDevices\c:\coLinux\swap_256Mb" enabled="true"/>
<bootparams>root=/dev/cobd0</bootparams>
<image path="vmlinux"/>
<memory size="64"/>
<network index="0" type="tap" name="TAP"/>
</colinux>
<colinux>
<block_device index="0" path="\DosDevices\C:\coLinux\Debian-3.0r0.ext3.1gb" enabled="true"/>
<block_device index="1" path="\DosDevices\c:\coLinux\swap_256Mb" enabled="true"/>
<bootparams>root=/dev/cobd0</bootparams>
<image path="vmlinux"/>
<memory size="64"/>
<network index="0" type="tap" name="TAP"/>
</colinux>
CODE
<block_device index="0" path="\DosDevices\C:\coLinux\Debian-3.0r0.ext3.1gb" enabled="true"/>
This part links to the image file (in this case the Debian file). It needs to point to the correct directory, so make sure not to make any mistakes!
CODE
<block_device index="1" path="\DosDevices\c:\coLinux\swap_256Mb" enabled="true"/>
This part points to the swap file. A swap file is optional.
If you don't want to use it, change "true" to "false".
If you do want to use a swap-file, download one from this location and uncompress it (and make sure the directory is displayed correctly in default.colinux.xml!).
CODE
<memory size="64"/>
This is the last important part of the file. Don't use too much of the memory, or your computer can slow down. Don't use too little, or Linux won't run well. 64 Mb should do well, if you're not running anything like KDE or Gnome.
Save default.colinux.xml and close it.
6. In the Windows Start Menu, search for the 'File Prompt' (good old DOS), and start it.
Type
CODE
cd c:\colinux
You are now in the correct directory.
7. Type
CODE
colinux-daemon.exe -c default.colinux.xml
This will start the colinux-daemon.exe file, using the defaults chosen in default.colinux.xml.
8. You're running Linux in Windows! Next part: going graphical!
So, how does my explanation look?
edit 1: changed part 7