Does DoorMUD run in multi-user mode on a Linux system running DOS emulation (DOSEMU)?
Yes, it does, but you will need to do some patching of DOSEMU. Check how your DOS file system is set up. If you are doing “partition” access you cannot safely allow access to more than a single user at a time, so you must instead have your DOS file system on a Linux partition and do redirection (see the DOSEMU documentation). However, there is an issue in that Linux file locking does not map precisely to DOS file locking. You need to patch DOSEMU and build a special version to deal with this problem. Find the file “dosext/mfs/mfs.c” in your DOSEMU source tree. Locate the following lines: case DENY_ANY: fl.l_type = F_RDLCK; Change the second line to fl.l_type = !writing ? F_RDLCK : F_WRLCK; and build a new version of DOSEMU. Save it in /usr/bin with a different name (i.e. ‘doslock’). Use this for DoorMUD, and other multiuser games that give you errors. DO NOT use it for everything!