home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / bit / listserv / notabene / 3394 < prev    next >
Encoding:
Text File  |  1993-01-21  |  3.7 KB  |  119 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!IRISHVMA.BITNET!GSCHLABA
  3. Message-ID: <NOTABENE%93012202501005@TAUNIVM>
  4. Date:         Thu, 21 Jan 93 19:31:14 EST
  5. Sender:       Nota Bene List <NOTABENE@TAUNIVM.BITNET>
  6. From:         "Gerald W. Schlabach" <GSCHLABA@IRISHVMA.BITNET>
  7. Subject:      DR DOS set up
  8. Newsgroups: bit.listserv.notabene
  9. Lines: 108
  10.  
  11. Having received a few requests for a DR DOS setup that gives 625K of
  12. conventional memory on a 486sx machine with 2 megs of memory, I am now posting
  13. a version of my CONFIG.SYS and AUTOEXEC.BAT file.  Special thanks, again to
  14. Ted Parkinson, whose files I modified for myself.
  15.  
  16. Look for "inter-linear" REM notes commenting and clarifying a few things.
  17. A special note:  I couldn't figure out how Ted had gotten his 625K until I
  18. noticed that I still had a disk cache program in my autoexec.bat that Windows
  19. had put there (SMARTDRV.EXE).  DR DOS gives you its own cache, Super PC Kwick,
  20. so stay with one or the other.  If some other reader wants to tell us why
  21. one is better than the other, that is welcome.  The memory usage seems
  22. equivalent, and I can't tell a difference in hard disk access time.  But
  23. having run an XT until this week, everything still seems fast!
  24.  
  25. Gerald Schlabach
  26. schlabach.1@nd.edu
  27.  
  28. CONFIG.SYS: ------------------------------------------------------------
  29.  
  30. DEVICE=C:\DRDOS\EMM386.SYS /f=auto /k=auto /b=ffff  /r=auto
  31. SHELL=C:\COMMAND.COM C:\ /P /E:512
  32. hidevice=c:\drdos\vdisk.sys 312 /e
  33. HIDEVICE=C:\DRDOS\ANSI.SYS
  34. HIDEVICE=C:\MOUSE\MOUSE.SYS
  35. BREAK=ON
  36. HIBUFFERS=8
  37. FILES=30
  38. FCBS=2,2
  39. LASTDRIVE=U
  40. HISTORY=ON
  41. FASTOPEN=250
  42. HIDOS=ON
  43. STACKS=9,256
  44. ------------------------------------------------------------------------
  45.  
  46. AUTOEXEC.BAT: ----------------------------------------------------------
  47.  
  48. @ECHO OFF
  49. REM You may prefer a different prompt, of course!
  50. PROMPT $D $T$H$H$H$_$P$G
  51. REM The DRDOSBEG and DRDOSEND labels tell the SETUP program which
  52. REM statements it should process. Put any additional statements for
  53. REM DR DOS between these two labels. Any other statements e.g. for
  54. REM other operating systems should be placed outside the labels.
  55. :DRDOSBEG
  56. REM You will certainly want to modify this path:
  57. PATH C:\;C:\NB;C:\DRDOS;C:\UTILS;C:\WINDOWS;C:\KERMIT;C:\PRO;C:\NBACKUP
  58. VERIFY OFF
  59. SET TEMP=C:\TEMP
  60. SET DRDOSCFG=C:\
  61. share.exe /L:20 /mu
  62. DISKMAP C:
  63. REM Ted Parkinson has a plus not a minus in the MEMMAX line that follows.
  64. REM I could not get TASKMAX to load until I changed this.  Experiment.
  65. MEMMAX -u >nul
  66. superpck /A+ /S:384
  67. REM the parameter /S:256 or 384 after above line gives some extended memory
  68. REM extra for dictionary etc.
  69. REM The /L parameter that follows may or may not make a difference.
  70. Hiload taskmax /l:640
  71. delwatch c:
  72. mode con: rate=28 delay=1
  73. :DRDOSEND
  74. :ask
  75. cls
  76. REM I have cute lines around the next ECHO sections, but removed them
  77. REM for sending over Bitnet!
  78. ECHO press one:
  79. ECHO 1)  Windows
  80. ECHO 2)  Nota Bene
  81. ECHO 3)  dos prompt
  82. switch win, nb, end
  83. :nb
  84. cls
  85. REM See additional file below.  This is to install the set of programs that
  86. REM I regularly switch back and forth from.
  87. nbset
  88. REM  You may have installed a different hot key.  Re-write previous line.
  89. goto ask
  90. :win
  91. WIN
  92. goto ask
  93. :end
  94. cls
  95. ECHO from now on, type:
  96. ECHO WIN   for Windows
  97. ECHO NBSET for Nota Bene plus
  98. ECHO NB    for Nota Bene only
  99. ------------------------------------------------------------------------
  100.  
  101. Included as a sample:
  102.  
  103. NBSET.BAT: -------------------------------------------------------------
  104.  
  105. @echo off
  106. cls
  107. c:
  108. chdir \
  109. echo Loading Nota Bene...
  110. taskmax /c c:\nb\nb
  111. echo Loading Kermit...
  112. taskmax /c c:\kermit\kermit
  113. echo Loading concordance...
  114. taskmax /c c:\bible.kjv\kjv
  115. cls
  116. echo To begin, use task
  117. echo switching hot-key:
  118. echo     Shift-Esc
  119.