Updated doors scripts and doc
This commit is contained in:
parent
8a59793d06
commit
07f46addd9
@ -22,6 +22,11 @@ v0.71.0 27-Oct-2004
|
|||||||
Added prompt 28.
|
Added prompt 28.
|
||||||
Removed leading spaces of prompt 151.
|
Removed leading spaces of prompt 151.
|
||||||
|
|
||||||
|
script:
|
||||||
|
Modified rundoor.sh so that it uses two different dosemu
|
||||||
|
configuration files, one for virtual modem and one without.
|
||||||
|
See the manual doors.html.
|
||||||
|
|
||||||
examples:
|
examples:
|
||||||
Fixed logo display.
|
Fixed logo display.
|
||||||
Fixed Spanish txtfiles to leave out an old support bbs.
|
Fixed Spanish txtfiles to leave out an old support bbs.
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
</HEAD>
|
</HEAD>
|
||||||
<BODY>
|
<BODY>
|
||||||
<BLOCKQUOTE>
|
<BLOCKQUOTE>
|
||||||
<div align='right'><h5>Last update 11-Aug-2004</h5></div>
|
<div align='right'><h5>Last update 05-Nov-2004</h5></div>
|
||||||
<div align='center'><H1>MBSE BBS - Running DOS doors.</H1></div>
|
<div align='center'><H1>MBSE BBS - Running DOS doors.</H1></div>
|
||||||
|
|
||||||
<h3>Introduction</h3>
|
<h3>Introduction</h3>
|
||||||
@ -71,6 +71,14 @@ $_ems = (2048)
|
|||||||
$_dpmi = (0x1000)
|
$_dpmi = (0x1000)
|
||||||
$_layout = "us"
|
$_layout = "us"
|
||||||
</pre>
|
</pre>
|
||||||
|
Next copy this new file as <code>virtual.conf</code> in
|
||||||
|
<code>~/etc/dosemu/</code>. Then add the following line:
|
||||||
|
<pre>
|
||||||
|
$_com1 = "virtual"
|
||||||
|
</pre>
|
||||||
|
Note that in older dosemu versions you could use a commandline option to do
|
||||||
|
this, but this isn't supported anymore since dosemu-1.2.x. The
|
||||||
|
<code>rundoor.sh</code> now also uses two configuration files.<br>
|
||||||
Next we need to setup the C: drive. Do this as user mbse. First type <code>umask
|
Next we need to setup the C: drive. Do this as user mbse. First type <code>umask
|
||||||
007</code>, this sets the create mode for directories to 0770 and files to 0660
|
007</code>, this sets the create mode for directories to 0770 and files to 0660
|
||||||
so that we create all files and directories read/write for all bbs users. This
|
so that we create all files and directories read/write for all bbs users. This
|
||||||
@ -210,6 +218,11 @@ names in <code>~/bin</code> (or copies) to <code>~/bin/runvirtual.sh</code>. You
|
|||||||
should not need to change anything else.
|
should not need to change anything else.
|
||||||
<p>
|
<p>
|
||||||
|
|
||||||
|
<h3>Problems</h3>
|
||||||
|
<p>
|
||||||
|
Currently there are some troubles with modem calls.
|
||||||
|
<p>
|
||||||
|
|
||||||
<A HREF="index.htm"><IMG SRC="images/b_arrow.png" ALT="Back" Border="0">Go Back</A>
|
<A HREF="index.htm"><IMG SRC="images/b_arrow.png" ALT="Back" Border="0">Go Back</A>
|
||||||
</BLOCKQUOTE>
|
</BLOCKQUOTE>
|
||||||
</BODY>
|
</BODY>
|
||||||
|
@ -47,10 +47,6 @@ fi
|
|||||||
if [ "$2" == "novirtual" ]; then
|
if [ "$2" == "novirtual" ]; then
|
||||||
/usr/bin/dosemu.bin -f ${MBSE_ROOT}/etc/dosemu/dosemu.conf -I "`echo -e keystroke $COMMANDO`"
|
/usr/bin/dosemu.bin -f ${MBSE_ROOT}/etc/dosemu/dosemu.conf -I "`echo -e keystroke $COMMANDO`"
|
||||||
else
|
else
|
||||||
/usr/bin/dosemu.bin -f ${MBSE_ROOT}/etc/dosemu/dosemu.conf -I "`echo -e serial { com 1 virtual }"\n" keystroke $COMMANDO`"
|
/usr/bin/dosemu.bin -f ${MBSE_ROOT}/etc/dosemu/virtual.conf -I "`echo -e keystroke $COMMANDO`"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# reset the users terminal, just in case.
|
|
||||||
reset
|
|
||||||
tput reset
|
|
||||||
stty sane
|
|
||||||
|
Reference in New Issue
Block a user