AUTHOR: Alex Kloss DATE: 2003-09-19 LICENSE: GNU Free Documentation License Version 1.2 SYNOPSIS: Setting up dosemu with freeDOS or any other DOS. DESCRIPTION: Sometimes you want to use the good old Disk Operating System, e.g. for playing some real old games (like commander keen), but you don't want to shutdown your linux box and don't have a DOS bootdisk anyway... [ATTENTION: dosemu is discontinued in favour of dosbox (available on http://dosbox.sourceforge.net) - but it's still faster in most cases!] PREREQUISITES: http://dosemu.sf.net - dosemu-1.2.0.tgz, most actual dosemu-freedos-bin.tgz HINT: ./configure --prefix=/usr --enable-experimental \ --with-fdtarball= && make && make install If the installation breaks due to not finding bdftopcf, just use "make install" again. The error shouldn't occur on the 2nd try. now try "dos" or "xdos". If xdos complains about not finding the necessary fonts, you should edit either your etc/X11/XftConfig or /etc/fonts/fonts.conf (if you're using the newest X-Server with xft) and add to the first lines 'dir "/usr/X11R6/lib/X11/fonts/misc"' in XftConfig or '/usr/X11R6/lib/X11/fonts/misc' in fonts.conf if you're not using xft, you will have to restart the x server to let the changes take effect or use the commands: xset +fp /usr/X11R6/lib/X11/fonts/misc xset fp rehash and try to start dosemu again. If you did not use the freedos image, you will have to set up your dos image yourself: make a directory /usr/share/dosemu and copy the io.sys and the msdos.sys of your dos to this directory. A minor problem is that the src/plugin/commands dir does not contain all of the dosemu stuff, for example the cdrom.sys driver is missing. You'll find the tasm sources in /src/commands. Since you propably don't have tasm, you'll have to find a way to 1. extract that driver from the binary distribution or 2. compile it without tasm using the gcc assembler: cd src/commands && for i in aspi cdrom ems emufs; do as -o ${i}.sys < ${i}.S done && mkdir /usr/share/dosemu/dosemu && cp *.sys /usr/share/dosemu/dosemu You may now start "dosemu" or "xdosemu" and install your DOS software at will. CHANGELOG: [2002-01-18] * Initial Hint. [2003-09-09] * Conversion to new hint format, some changes. [2003-09-17] * Small fixes in conversion. [2003-10-07] * Added gcc-2.95.3 stuff for LFS-5.x. [2004-01-19] * Updated to dosemu 1.2.0, gcc as instead of as86 and minor changes.