home *** CD-ROM | disk | FTP | other *** search
/ Network Support Encyclopedia 15 / novell-nsepro-1992-vol15.iso / download / topiss.txt < prev    next >
Text File  |  1992-09-04  |  12KB  |  141 lines

  1. Top Issues for July 1992
  2.  
  3. NetWare Connectivity
  4.  
  5. Q:  I am following the NetWare for SAA instructions exactly but I keep getting Btrieve errors.  Why?
  6.  
  7. A:  The AUTOEXEC examples in the instructions contain a btrieve line with a part that can easily be read as:
  8.     -1=20
  9.  
  10. In fact, the l is not a number, it is a lower case L.  The line should read:
  11.  
  12.     -l=20
  13.  
  14. Q:  Why do I get the error message "LC:Unload from console of service NACS"
  15. when trying to use a Digiboard in my NACS version 3?
  16.  
  17. A:  The Digiboard AIODGXI driver is case sensitive.  The NODE=0 statement in AUTOEXEC.NCF must be in lower case.  For example:
  18.  
  19.     LOAD AIODGXI  port=0200 mem=D0000 node=0
  20.  
  21. Q:  Can I use DOS 5 with Access Server?
  22.  
  23. A:  You can if you have upgraded to version 1.22.  But do not use the memory management feature of DOS 5 with Access Server.  The amount of RAM available per virtual DOS session will be significantly less than with DOS 3.3.
  24.  
  25. Q:  I think I am following the Asynch Router addressing instructions, but the router acts as though the addressing is incorrect.  Why?
  26.  
  27. A:  Early versions of the Asynch Bridge/Router required the address on both sides to be the same.  However, starting with Asynch Router 1.2 the addresses must be Different.
  28.  
  29. DR DOS  Top Issues
  30. Q:  What are the requirments for the HIINSTALL, HIDEVICE, and HILOAD commands?
  31.  
  32. A:1.  For these commands to be effective, your computer hardware must support upper memory through a DR DOS memory manager (HIDOS.SYS or EMM386.SYS).  If a DR DOS 6.0 memory manager is not present, the device or executable is loaded into conventional memory.
  33. 2.  These commands do not work with third-party memory managers. See the Optimization and Configuration Tips manual for more details.  A brief description of these commands follows.
  34.  
  35. HIINSTALL:    HIINSTALL loads specified TSRs into upper memory.  If there is insufficient upper memory for the specified TSR, it is loaded into conventional memory.  Although it is very similar to the HILOAD command (see below), HIINSTALL must be used in the config.sys or dconfig.sys file.  Use HIINSTALL when you want to load a TSR permanently at boot time for best memory allocation.  As with HILOAD, HIINSTALL loads the executable into upper memory only if enough Upper Memory Blocks (UMB's) are available. 
  36.  
  37. HILOAD:    HILOAD loads specified TSRs and network drivers into upper memory.  HILOAD is similar to the HIINSTALL command (which must be loaded using the config.sys file), but it can be executed from the command line or from the autoexec.bat or other batch file.  Before using HILOAD, you must enable upper memory  with the MEMMAX +U command.  This command loads the executable if enough UMBs are available.  An example of the HILOAD command in a batch file follows:
  38.  
  39.                 MEMMAX +U
  40.                 HILOAD LSL
  41.                 HILOAD NE2000
  42.                 HILOAD IPX
  43.                 HILOAD NETX
  44.                 MEMMAX -U
  45.  
  46.  
  47. HIDEVICE:    HIDEVICE loads specified device drivers into upper memory if UMBs are available.  HIDEVICE must be loaded via the config.sys file.  An example of HIDEVICE follows:
  48.  
  49.     HIDEVICE=C:\DRDOS\ANSI.SYS
  50.  
  51. Q.  What is MEMMAX, and how is it used?
  52.  
  53. A.    The MEMMAX.EXE command selectively enables and disables those memory areas provided by DR DOS 6.0 that might conflict with some applications.  
  54.  
  55. For example, MEMMAX -L and +L respectively disable and enables the first 64 Kbytes of conventional memory.  This region is termed "low memory."  
  56.  
  57. Usually the operating system resides in low memory; however, by using the DR DOS 6.0 MemoryMAX features, you can free up most of this area for running applications.  
  58.  
  59. Some applications were written using packing utilities that become confused when loaded into this low memory.  If this happens, the following message appears:
  60.  
  61.     !Packed file is corrupt.
  62.  
  63. To correct this situation, use the MEMMAX -L command to disable low memory before running the application. After exiting the application, use MEMMAX +L to enable the low memory once again.
  64.  
  65. Q.    What can I expect when I  use SSTOR on my bootable hard drive?   
  66.  
  67. A.    The SuperStor program (and device driver) compress data for more efficient storage on hard disks.  Data is automatically compressed when you write to the drive and decompressed when you read from the drive.  You can increase the capacity of your hard disk considerably, depending on the type of files stored on the disk.  
  68.  
  69. The following are some typical compression ratios achieved by SuperStor:
  70.  
  71.     Executable program files        1.4:1 to 2:1
  72.     Word processing files        2:1 to 4:1
  73.     Video image file            2:1 to 8:1
  74.  
  75. The overall compression ratio of the files determines the total amount of disk space you can expect to obtain using SSTOR.
  76.  
  77. You may also notice a new drive letter when you use SSTOR.  When the SSTOR utility compresses your first bootable hard disk, it automatically sets aside a small portion of the disk as uncompressed disk space and assigns it the next available drive letter.  This space is used at boot time to load the SSTOR driver and the operating system.  Applications cannot understand the compressed data in the compressed drive without a driver acting as a compression translator.  See the DR DOS 6.0 Users Guide P. 471 for additional information.
  78.  
  79. Q.    Can I use the HIDEVICE command to load the SuperStor drivers sstordrv.sys and devswap.com into upper memory?
  80.  
  81. A.    The SuperStor drivers are designed to detect whether upper memory blocks are available and they load as much into upper memory as possible. The HIDEVICE statement is not necessary and should not be used on sstordrv.sys and devswap.com.  
  82.  
  83. Load these drivers with the usual DEVICE command.  
  84.  
  85. Likewise, if you use a third party memory manager such as a QEMM or 386MAX in place of the DRDOS memory manager, use the usual DEVICE statement  Do not use the third party manager's equivalent of HIDEVICE to force all of the driver into upper memory.
  86.  
  87. Note that in order for the SuperStor drivers to detect and use available upper memory, you must load the memory manager before the SuperStor drivers.
  88.  
  89. For more information, see Faxback document #1202, "Hiloading SuperStor."
  90.  
  91. Q.    I used SuperStore on my c: drive, and now my original d: drive has become e:.  How can I get my original drive sequence back?
  92.  
  93. A.    This situation may occur if a third party-disk partitioning scheme such as Disk Manager or Speedstor was used to partition the disk.  To restore the original drive letter assignments, you must load the partitioning driver before the SuperStor driver.  Do this by moving the line that loads the partitioning driver before the SSTORDRV.SYS driver in either the CONFIG.SYS file or the DCONFIG.SYS file (usually found on D: drive).  You must also copy the partitioning driver to the same drive in which it is loaded.
  94.  
  95. TOP ISSUES NETWARE FOR MACINTOSH
  96.  
  97. Q:    Can DOS workstations print to AppleTalk printers? 
  98.  
  99. A:    NetWare for Macintosh includes printer definition files for the LaserWriter and the ImageWriter.  After you set up the VAP or NLM so that Macintoshes can print, you need only to run PRINTDEF to import the needed printer definition file (PDF) and define a form.  Then run PRINTCON to define a job.  Use CAPTURE and NPRINT, along with the DOS application's printer drivers, to send jobs to the queue. 
  100.  
  101. A common problem with DOS workstations printing to the Macintosh queues is that print jobs do not print after being submitted to the queue.  This happens if a text job, such as a screen print, is sent to a queue through a PostScript job.  If you want to print a non-PostScript job, be sure to configure and use APLASER2.PDF for Apple LaserWriter printers, or PSTSCRPT.PDF for third-party PostScript printers.  These files convert a text file into PostScript so the LaserWriter can print it.  They are posted to CompuServe's NetWire and are shipped with v3.01 and v3.011 NetWare for Macintosh.  Configuration through PRINTCON and PRINTDEF is documented in NetWare for Macintosh Installation and Maintenance.  
  102.  
  103. Other oversights that will result in a failure to print include these:
  104. -    Not using a print header = 255 command in the SHELL.CFG file on the DOS workstation.
  105. -    Setting a printer to "reinitialize" mode in a PRINTCON job configuration.
  106. -    Attempting to print under Windows without the XMS shell.      
  107.  
  108. Q:    How do I set up printing so my Macintoshes can print to network printers?
  109.  
  110. A:    With versions of NetWare for Macintosh below v3.01, all printers (either true Apple LaserWriters or LaserWriter-compatible printers) need to be connected to an AppleTalk network.  The AppleTalk network on which the printer resides does not need to be connected directly to the file server, but it must be accessible to the file server via AppleTalk.  There are also third-party solutions available for connecting LaserWriter printers to a dedicated AppleTalk device, that is connected to Ethernet.
  111.  
  112. With NetWare for Macintosh v3.01 and above, ATPS (AppleTalk Print Services) queues can be serviced by PostScript printers attached via serial or parallel cables to the NetWare v3.11 file server or NetWare DOS client.  You must configure the ATPS.CFG file to set up a queue that will be handled by a print server other than ATPS.  The syntax in the configuration file should be similar to this:
  113.  
  114.     -o <name of the print queue> -wb -l -f <font file>
  115.  
  116. This syntax also works for PostScript printers that are attached to Ethernet but don't use the AppleTalk protocol, such as the HPIIIsi.  The print server that handles this queue is configured in PCONSOLE.  Look to the NetWare for Macintosh and Print Server documentation for more detailed information.
  117.  
  118. Q:    When I try to print from PageMaker v4.2, it results in the following error messages:
  119.  
  120.     ATPS: loading printer (<printer name>) with new Laser Prep    
  121.     ATPS: sending laser prep file (SYS:SYSTEM\ATPS\ald20955.PRS)
  122.     ATPS: can't open dictionary (SYS:SYSTEM|ATPS|ald20955.PRS)
  123.     ATPS: printer (<printer name>) returned bad dictionary status
  124.  
  125. What is the problem?
  126.  
  127. A:    ATPS parses out the Aldus Prep dictionary version and revision number incorrectly, so it names the Aldus Prep dictionary incorrectly when it saves it to the SYS:SYSTEM\ATPS subdirectory.  This results in ATPS not being able to use the file when it is time to print a PageMaker v4.2 print job.  To correct this, you must rename the Aldus Prep file located in the SYS:SYSTEM\ATPS subdirectory.  Look for a file named "ALD00.PRS " or "AL00.PRS" and rename it to "ALD20955.PRS".
  128.  
  129. Q:    I seem to be having a compatibility problem with system inits and extensions and DataClub.  My Macintosh crashes, and I get erratic behavior from the system.  What could be the problem?  
  130.  
  131. A:    DataClub works fine with most common software, although there are some known init conflicts.  Below are a few of the common ones.  DataClub v2.0 Release Notes include a complete list of compatibility considerations.
  132.  
  133. SAM Intercept - The v2.x series of SAM needs to be loaded after the DataClub extension.  If you do not have an extension loading utility (for example, InitPicker), then rename SAM Intercept to !SAM Intercept.  Also, the v2.x series should set the SAM protection to Basic.  DataClub and SAM v3.0 are compatible provided SAM loads before the DataClub extension file.  
  134.  
  135. Note that under System 7 it is not sufficient to drag the SAM Intercept file into the System Folder.  This can lead to SAM loading after all the extensions, leaving your system less protected.  Under System 7, you must place the SAM Intercept file in the Extensions Folder and create an alias in the Control Panels Folder.
  136.  
  137. RasterOps Extensions - DataClub is not compatible with the RasterOps Extensions.  These are optional when using the RasterOps screen and should be disabled.
  138.  
  139. Now Utilities - DataClub shows erratic behavior with the Now Utilities Startup Manager.  Uncheck the "Show invisible folders" in the Control Panel.
  140.  
  141.