home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / admin / top.0.3.README < prev    next >
Encoding:
Text File  |  1996-02-16  |  8.1 KB  |  192 lines

  1.  
  2.                              TOP v3.3
  3.                    Version 0.3 for NEXTSTEP
  4.  
  5. Unix utility to monitor process usage and system statistics in a terminal window.
  6.  
  7. Warning:  For general use, top must have suid status for the file's owner, root, which could be a security problem for some sites.
  8.  
  9. KNOWN PROBLEMS AND FIXES:
  10.  
  11. NEXTSTEP - v0.3  2/15/96 tpugh
  12. This release fixes the problems in release v0.2.
  13. 1)  Command name not showing in the display.  This problem occurs for hppa and sparc machines, and NS4.0 alpha machines.  NeXT changed the task structure, so top could not find utask structure which contains the command name.  <mach/task.h> is not shipped with any NEXTSTEP systems.
  14. 2) Removed all C++ style comments from machine.c to be ANSI C compatible.
  15. 3) Removed the %WCPU field, no support for it.
  16. 4) Reduced line length to less than 80 columns.  Some commands are long and will extend beyond 80 colums.
  17. 5) Fixed "top -U" fails with bus error.  In special cases where only a specific user is displayed, the process index variable was being improperly advanced, resulting in zero process address values and bus errors.
  18. 6) Eliminated the text artifact in the command column.
  19.  
  20.  
  21. NEXTSTEP - v0.2  9/1/95 tpugh 
  22. This release fixes two problems.
  23. 1) new processes were not showing up in the display.
  24. 2) compiling problems.  The compiler flags are now correctly inserted into the makefile without user action.  Continue to use the Configure script to setup and install the software.  When it asks for compiler flags, use the defaults listed.
  25.  
  26.  
  27. NEXTSTEP - v0.1  8/2/95 tpugh
  28. This is the first release for NEXTSTEP, so beware.  It's working nicely on my NeXTstation Turbo Color running NEXTSTEP v3.2.
  29.  
  30. Please let me know of any problem so we can fix them.  Let me know if it works.
  31.  
  32.     Tim Pugh
  33.     Oregon State University
  34.     tpugh@oce.orst.edu
  35.  
  36.  
  37. COMPATIBILITY - next32
  38. This is the machine-dependent module for NEXTSTEP v3.x
  39. Reported to work for NEXTSTEP v3.0, v3.2, and v3.3 Mach OS:
  40.     NEXTSTEP v3.0 on Motorola machines.
  41.     NEXTSTEP v3.2 on Intel and Motorola machines.
  42.     NEXTSTEP v3.3 on Intel and Motorola machines.
  43. Problem with command column for (Choose next40 for fix):
  44.     NEXTSTEP v3.2 on HP machines.
  45.     NEXTSTEP v3.3 on HP and Sparc machines.
  46. Has not been tested for NEXTSTEP v2.x machines, although it should work.
  47. Has not been tested for NEXTSTEP v3.1 machines, although it should work.
  48.  
  49. COMPATIBILITY - next40
  50. This is the machine-dependent module for NEXTSTEP v3.x/4.x
  51. Reported to work for:
  52.     NEXTSTEP v3.2 on HP machines.
  53.     NEXTSTEP v3.3 on HP and Sparc machines.
  54. Has not been tested for NEXTSTEP v4.0 machines, although it should work.
  55.  
  56.  
  57. FREQUENTLY ASKED QUESTIONS
  58.  #1:   top 3.3 (after configuring for next32 with all defaults) on my i386 running NEXTSTEP 3.3, I get:  Error calling task_by_unix_pid(): failure(5)
  59.  
  60. The call is failing because you do not have permission.  You must be the superuser, root, or the program must have root privledges to work properly.  It's been reported that setting the group sticky bit for kmem does not work, and the fix is to set the user sticky bit for root.  So install "top" with the permissions 4755.
  61.  
  62. As root, do the following:
  63. tsunami# chown root.kmem top
  64. tsunami# chmod 4755 top
  65. tsunami# ls -lg top
  66. -rwsr-xr-x  1 root     kmem      121408 Sep  1 10:14 top*
  67.  
  68. With the kmem group sticky bit set, we can read kernal memory without problems, but to communicate with the Mach kernal for task and thread info, it requires root privileges.
  69.  
  70.  
  71. #2:  How to compile top to create a multiple binary file or FAT?
  72.  
  73. Added the -arch flags.  Change line 64 to:
  74. CFLAGS = -DSHOW_UTT -arch m68k -arch i386 -arch hppa -arch sparc $(CDEFS)
  75.  
  76. Added $(CFLAGS).  Change line 79 to:
  77.     $(CC) $(CFLAGS) -o top $(OBJS) -ltermcap -lm $(LIBS)
  78.  
  79.  
  80. ===============================================================================
  81.  
  82.  
  83.                              TOP
  84.                          Version 3.3
  85.  
  86.                        William LeFebvre
  87.                      and a cast of dozens
  88.  
  89.  
  90. If you do not want to read this entire file, then at least read
  91. the section at the end entitled "KNOWN PROBLEMS".
  92.  
  93. "top" is a program that will give continual reports about the state of
  94. the system, including a list of the top cpu using processes.  Version 3
  95. of "top" has three primary design goals: provide an accurate snapshot of
  96. the system and process state, not be one of the top processes itself, be
  97. as portable as possible.
  98.  
  99. Version 3 has many bug fixes from version 2.5, and it has also been
  100. reorganized in a major way to make it easy to port to other platforms.
  101. All system dependent code is now contained in one file.
  102.  
  103. Top now includes a configuration script called "Configure".  It helps
  104. the installer choose the correct parameters for this particular
  105. installation.  This script MUST be run before attempting to compile top.
  106.  
  107. Top requires read access to the memory files "/dev/kmem" and "/dev/mem"
  108. as well as the system image "/vmunix".  Some installations have these
  109. files protected from general access.  These sites would have to install
  110. this program in the same way that programs such as "ps" are installed.
  111. In addition, on those Unix variants that support the proc filesystem
  112. (such as SVR4 and Solaris 2), top requires read access to all the files
  113. in /proc: typically dictating that top be installed setuid to root.
  114.  
  115. CAVEAT: version 3 of top has internal commands that kill and renice
  116. processes.  Although I have taken steps to insure that top makes
  117. appropriate checks with these commands, I cannot guarantee that these
  118. internal commands are totally secure.  IF YOU INSTALL top as a SETUID
  119. program, you do so AT YOUR OWN RISK!  I realize that some operating
  120. systems will require top to run setuid, and I will do everything I can
  121. to make sure that top is a secure setuid program.
  122.  
  123. Configure will ask you to input values for certain parameters.  Before
  124. each parameter, Configure will display a description of what the
  125. parameter does.  Read the description and choose an appropriate value.
  126. Sometimes a default will appear in brackets.  Typing just return will
  127. choose the default.
  128.  
  129. System support now takes the form of "modules".  Adding support for
  130. a different architecture requires only adding a module.  Configure
  131. asks which module to use when it is configuring top.  See the file
  132. "Porting" for a description of how to write your own module.
  133.  
  134. To compile and install "top", read the file "INSTALL" and follow the
  135. directions and advice contained therein.
  136.  
  137. Once you have created a binary for one particular type of machine, you
  138. can reconfigure for another type with "./Configure modulename" where
  139. "modulename" is replaced with the appropriate module name.  All other
  140. parameter values are kept the same.  Note that in some cases this may
  141. not be appropriate.
  142.  
  143. If you make any kind of change to "top" that you feel would be
  144. beneficial to others who use this program, or if you find and fix a bug,
  145. please send me the change.
  146.  
  147. Be sure to read the FAQ enclosed with the distrubution.  It contains
  148. answers to the most commonly asked questions about the configuration,
  149. installation, and operation of top.
  150.  
  151. AVAILABILITY
  152.  
  153. The latest version of "top" is always available via anonymous FTP from
  154. the host "eecs.nwu.edu" in the directory "/pub/top".  Additional modules
  155. will be made available in the directory "/pub/top/m".
  156.  
  157. KNOWN PROBLEMS:
  158.  
  159. DECOSF/1 V3.0
  160.  
  161. There is a bug either in the module, in utils.c, or in DEC's optimizer that
  162. is tickled by the decosf1 module when compiled under V3.0 (and perhaps
  163. earlier versions).  Top compiled using DEC's compiler with optimization
  164. will consistently produce a segmentation fault (in format_next_process
  165. while calling sprintf).  To work around this problem, either compile top
  166. with gcc or turn off optimization (compile without -O).  Hopefully someone
  167. out there will be able to tell me why this is happening.
  168.  
  169. Gnu CC
  170.  
  171. See the file "FAQ":  question #11.
  172.  
  173.  
  174. System V R 4.2
  175.  
  176. Load average and memory displays do not work.  The problem has been
  177. traced down to a potential bug in the "mem" driver.  The author
  178. of the svr42 module is working on a fix.
  179.  
  180.  
  181.         William LeFebvre
  182.         Decision and Information Sciences
  183.         Argonne National Laboratory
  184.         lefebvre@dis.anl.gov
  185.  
  186.  
  187.         U.S. Mail address:
  188.             William LeFebvre
  189.             9700 South Cass Avenue
  190.             DIS/900
  191.             Argonne, IL  60439
  192.