home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / DOS_GG / COMCAT / VOL95.ARJ / VOL9519 < prev    next >
Text File  |  1992-01-07  |  5KB  |  101 lines

  1.  
  2. O S / 2   - P r o g r a m m a T h e e k volume 9519
  3.  
  4. Source: Fernwood
  5.  
  6. Titel: Resource Monitor, GIF viewer for PM
  7.  
  8. Number  Name            Size    Date    Comments
  9.  
  10.         CATALOG  O19      816   2-18-90 This list 
  11. 9519.01 OS2WHERE ZIP     5993   5-28-89 Search for a file
  12. 9519.02 OS2XDIR  ZIP    15359  10-24-88 Sorted directory
  13. 9519.03 OS2_LS   ZIP    17436   6-14-88 DIR like Unix 'LS',  protected mode
  14. 9519.04 OSRM21A  ZIP    77312  10-28-89 OS/2 Resource  Monitor, Tuning Program
  15. 9519.05 OSRM2INI ZIP      724   9-19-89 Sample  initialization for ^
  16. 9519.06 OSRMDS   ZIP    11288  10-28-89 Capacity planning  aux. doc
  17. 9519.07 PHONE    ZIP    20484   8-20-88 Phonebook (Ascii) -  OS/2 and DOS
  18. 9519.08 PM-GIF1  ZIP    28404   4-14-89 GIF picture viewer  for PM
  19. 9519.09 PMALARM  ZIP     9342   7-11-89 PM Alarm system  (background)
  20. 9519.10 PMWALKER ZIP     6979   8-14-89 Walking icon - PM  gimmick
  21. 9519.11 PRMON    ZIP    10782   3-16-89 Solve IBM PM printer  driver problem
  22.         VOL9519  ABS     3378   2-18-90 Abstract by M.
  23.              14 File(s)  143360 bytes free on volume  DOSGG9519
  24.  
  25.                            OSRM2
  26.        OS/2 Resource Monitor Facility - Report And Analysis  Utility
  27.  
  28. OSRM2 was created to provide OS/2 users with:
  29.  
  30.      The ability to observe system resource contention and
  31.      consumption in a real-time environment.
  32.  
  33.      More importantly, to provide the OS/2 user, or
  34.      administrator, a data collector in which system
  35.      resource usage trends can be stored and analyzed when
  36.      considering upgrades ( CPU, memory, peripherals,
  37.      software ).
  38.  
  39. The real-time monitor can provide the performance tuner with
  40. indicators as to cpu or memory consumption as well as IO
  41. contention  under varying workloads.
  42.  
  43. The Data Collector, available with Version 1.0, will provide
  44. trend information to observe exactly what resources are
  45. being impacted the most and thus guide them to configuring
  46. for cost effectiveness, one wouldn't buy a faster CPU if
  47. memory contention is causing swapping overhead.
  48.  
  49. As with other multitasking operating systems ( MVS, UNIX )
  50. resources are shared in an OS/2 environment thus allowing
  51. concurrent workloads to exist at the same time in one
  52. system.
  53.  
  54.    ***    Phone   Phone Book Search ***
  55.  
  56. Phone searches a user-defined phone book  file  for  any
  57. entry  that  matches  any argument in the argument list.
  58. The phone book, normally stored in file  phone.txt,  may
  59. be created by any standard editor.  It contains lines of
  60. text, such as:
  61.  
  62.   Digital Equipment     DEC     (617) 897-5111
  63.  
  64. Note that phone does not impose any format on the  text,
  65. only  that  the  text  consist  of  words,  separated by
  66. blanks.  If a line  starts  with  whitespace  (blank  or
  67. tab),  it  is  considered  to  be  a continuation of the
  68. previous line.
  69.  
  70.                     *** PRMON ***
  71.  
  72. PRMON.C is a simple device monitor designed to eliminate the  printer
  73. control characters added to the print data stream by IBM's  Proprinter
  74. driver for Presentation Manager.  If your printer responds  incorrectly
  75. to these control characters, then PRMON may solve your  problem.
  76.  
  77. The program works by setting itself up as a device monitor  in the
  78. printer chain.  For every new print job that is sent through  the printer
  79. device, PRMON drops the first n records, then passes the  rest untouched.
  80.  
  81. By experimenting, I have found that 5 records is the correct  number to
  82. drop for the Proprinter device driver.  If you are using  PRMON with
  83. another driver, then you may need to experiment to find the  correct
  84. number for your application.
  85.  
  86. Unfortunately, OS/2's COM device driver does not support  device
  87. monitors.  Thus, data being sent to a serial printer cannot  be filtered
  88. using this technique.  However, once data has been received  by a monitor
  89. in the LPTx chain, there is no reason that the monitor  cannot send the
  90. data to a serial port.  PRMON supports serial printers in  this manner.
  91.  
  92. To use PRMON, use the PM control panel to set your printer up as a
  93. parallel printer (even if it is really a serial printer).   Then run
  94. PRMON as a background process by issuing the following  command:
  95.  
  96.         DETACH  PRMON  LPTx  n   [COMx:baud,parity,databits,stopbits]
  97.  
  98.         where LPTx is LPT1, 2, or 3, and n is the number of  records to
  99.         be dropped from each print job.  The COMx parameters are
  100.         optional, and should only be used if you want to  redirect
  101.         the output to a serial printer.