home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Documentation / PUPS_Html / AUUGN / andrew_notes.txt / text0000.txt < prev    next >
Encoding:
Text File  |  1995-11-01  |  1.4 KB  |  45 lines

  1. This is the first in a series of notes on the early editions of Unix.
  2. They are random remarks on what interested me in reading the programmer's
  3. manuals for the various editions of Unix. These notes are not proprietary
  4. and will be produced at random times.
  5.  
  6. EDITION ONE: (November 1971)
  7. ----------------------------
  8.  
  9. 1)    the 'tm' command was analogous to the `time command. If invoked with
  10.     arguments, it executed the command and gave the times used during that
  11.     command. If invoked without arguments, it gave two columns of numbers:
  12.     the times since boot, and the times since the last `tm' command.
  13.  
  14.     The categories of times were:
  15.             "tim"    (real time)        hrs:mins:secs
  16.             "ovh"    (time in sys)            ditto
  17.             "dsk"    (waiting for disk)      ditto
  18.             "idl"    (idle time)        ditto
  19.             "usr"    (user time)
  20.             "der"    (RK disk error count!!)
  21.     The second column was given with one decimal place in units of seconds.
  22.  
  23. 2)    the `time' system call returned the number of sixtieth of seconds since
  24.     Jan 1, 1971. This is different because the maximum time was about 2.5
  25.     years.
  26.  
  27. 3)    file names were limited to 8 bytes; accordingly directory entries were
  28.     10 bytes long.
  29.  
  30. 4)    the permission bits were quite different:
  31.         01    write, non-owner
  32.         02    read, non-owner
  33.         04    write, owner
  34.         10    read, owner
  35.         20    executable
  36.         40    set user id on execution
  37.  
  38. 5)    userid - username mapping was kept in /etc/uids.
  39. _____________________________
  40.  
  41. that's all folks! I would welcome any feedback or questions!
  42. andrew
  43.  
  44.  
  45.