I've installed dosemu-0.64.2 and it works perfectly when run from a console or tty. However I need to have some automated process run from the
web so I call dosemu in a perl cgi. The older version of dosemu 0.62 worked as long as you called it like this:
system "dos -F /etc/dosverify.conf < /dev/tty5 > /dev/null";
It seemed to use /dev/tty5 as the standard input and be satisfied however the new version does not work. It executes and dies without giving an error message.
Does anybody have any idea how I could provide a terminal somehow get it to work from the web cgi? Thanks in advance.