home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / os / linux / 16752 < prev    next >
Encoding:
Text File  |  1992-11-15  |  1.4 KB  |  37 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!elroy.jpl.nasa.gov!swrinde!zaphod.mps.ohio-state.edu!darwin.sura.net!paladin.american.edu!news.univie.ac.at!alijku05!kuemmel2.edvz.uni-linz.ac.at!K111114
  3. From: K111114@kuemmel2.edvz.uni-linz.ac.at (Herbert Rosmanith)
  4. Subject: RE: Help getting TCP/IP started
  5. Message-ID: <K111114.1.721796971@kuemmel2.edvz.uni-linz.ac.at>
  6. Sender: news@alijku05.edvz.uni-linz.ac.at
  7. Nntp-Posting-Host: kuemmel2.edvz.uni-linz.ac.at
  8. Organization: PC Cluster im TNF Turm
  9. Date: Sun, 15 Nov 1992 03:09:31 GMT
  10. Lines: 25
  11.  
  12. Hi Mark Dobie.
  13.  
  14. a) get lx98p4. there have been some updates done to the networking software.
  15.  
  16. b) I'm not sure why it works, but it does: edit /usr/etc/inet/config.c,
  17.    line 114:
  18.  
  19.    s = socket(AF_INET, SOCK_STREAM, PF_INET);
  20.  
  21.    in /usr/include/linux/socket.h, PF_INET is #def AF_INET = 2, *shrug*
  22.    and to get away the "protocol not supported" you should write:
  23.  
  24.    s = socket(AF_INET, SOCK_STREAM, 0);
  25.  
  26. c) Space.c: Make sure that the device "loopback" has irq = 0, not 5, as
  27.    in the default distribution.
  28.  
  29. d) When recompiling lx98p4, your "ps" won't work. get the diffs from 
  30.    nic.funet.fi, /pub/OS/Linux/PEOPLE/Linus, and do the "ps -U" thing.
  31.    But take care !!!
  32.    SLS-distribution has its ps-binary in the /bin directory, but when you
  33.    do a "make install" in your /usr/src/ps-098.(or whatever), the recompiled
  34.    binary is moved to /usr/bin. *COUGH*
  35.  
  36. Herp.
  37.