home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.os.linux
- 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
- From: K111114@kuemmel2.edvz.uni-linz.ac.at (Herbert Rosmanith)
- Subject: RE: Help getting TCP/IP started
- Message-ID: <K111114.1.721796971@kuemmel2.edvz.uni-linz.ac.at>
- Sender: news@alijku05.edvz.uni-linz.ac.at
- Nntp-Posting-Host: kuemmel2.edvz.uni-linz.ac.at
- Organization: PC Cluster im TNF Turm
- Date: Sun, 15 Nov 1992 03:09:31 GMT
- Lines: 25
-
- Hi Mark Dobie.
-
- a) get lx98p4. there have been some updates done to the networking software.
-
- b) I'm not sure why it works, but it does: edit /usr/etc/inet/config.c,
- line 114:
-
- s = socket(AF_INET, SOCK_STREAM, PF_INET);
-
- in /usr/include/linux/socket.h, PF_INET is #def AF_INET = 2, *shrug*
- and to get away the "protocol not supported" you should write:
-
- s = socket(AF_INET, SOCK_STREAM, 0);
-
- c) Space.c: Make sure that the device "loopback" has irq = 0, not 5, as
- in the default distribution.
-
- d) When recompiling lx98p4, your "ps" won't work. get the diffs from
- nic.funet.fi, /pub/OS/Linux/PEOPLE/Linus, and do the "ps -U" thing.
- But take care !!!
- SLS-distribution has its ps-binary in the /bin directory, but when you
- do a "make install" in your /usr/src/ps-098.(or whatever), the recompiled
- binary is moved to /usr/bin. *COUGH*
-
- Herp.
-