home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / unix / bsd / 2554 < prev    next >
Encoding:
Internet Message Format  |  1992-07-21  |  2.1 KB

  1. Path: sparky!uunet!ogicse!uwm.edu!miller.cs.uwm.edu!jimj
  2. From: jimj@miller.cs.uwm.edu (James Jegers)
  3. Newsgroups: comp.unix.bsd
  4. Subject: Kernel namelist not found, man fixes
  5. Summary: getting arp, w, uptime to work
  6. Keywords: namelist, man
  7. Message-ID: <1992Jul21.204316.4729@uwm.edu>
  8. Date: 21 Jul 92 20:43:16 GMT
  9. Article-I.D.: uwm.1992Jul21.204316.4729
  10. Sender: jimj@miller.cs.uwm.edu
  11. Organization: University of Wisconsin, Milwaukee
  12. Lines: 42
  13.  
  14.  
  15.    First, Thanks for writting 386bsd it's a great assest to us.
  16.  
  17. 1.  I'm having some problems with arp, w, and uptime.
  18.     When I run them they say bad namelist, or can't get namelist.
  19.  
  20.     Looking at the sources it appears that w, uptime, and arp
  21.     are looking for labels that I don't have in my kernel.
  22.     Is this the way it's supposed to be? Or why were they programs
  23.     put in with the system(just to make it complet?)
  24.  
  25. 2.  How do I get the shell to reqonize the stop(control-C) and
  26.     suspend(control-Z) character?  For example if I type make and
  27.     decide I want to stop it, i have to login someplace else
  28.     and kill the process.  Or hasn't this been added yet?
  29.     
  30. 3.  I fixed a couple of man problems.
  31.  
  32.      The manual page for magic and file all have two dots
  33.      before the commands,  eg.    "..SH" it should be ".SH"
  34.      just delete one of the double dots in the whole file and then 
  35.      it will work.
  36.  
  37.      The Makefile in /usr/othersrc/share/man/Makefile creates the whatis.db.  
  38.      The problem is that it doesn't strip the backspaces in the
  39.      title and apropos can't handle that.  So add a "col -b" to strip
  40.      those.
  41.  
  42. exerpt from the makefile.
  43.  
  44. makedb:
  45.     for file in `find /usr/share/man -type f -name '*.0' -print`; do \
  46.         sed -n -f /usr/share/man/makewhatis.sed $$file; \
  47.     done | col -b | sort -u > whatis.db
  48.     install -o ${BINOWN} -g ${BINGRP} -m 444 whatis.db \
  49.         ${DESTDIR}/usr/share/man
  50.  
  51. -- 
  52.      ______________________________________________________________
  53.     /\               University of Wisconsin -- Milwaukee          \
  54.     \_| Computing Services Division     Computer Science Department |
  55.       |   jimj@csd4.csd.uwm.edu              jimj@miller.cs.uwm.edu    |
  56.