Import 2.3.10pre5
[davej-history.git] / Documentation / Changes
blobce50723e9be2a24e86824684c9a4daf165806007
1 Intro
2 =====
4 This document is designed to provide a list of the minimum levels of
5 software necessary to run the 2.2 kernels, as well as provide brief
6 instructions regarding any other "Gotchas" users may encounter when
7 trying life on the Bleeding Edge.  If upgrading from a pre-2.0.x
8 kernel, please consult the Changes file included with 2.0.x kernels for
9 additional information; most of that information will not be repeated
10 here.  Basically, this document assumes that your system is already
11 functional and running at least 2.0.x kernels.
13    It is originally based on my "Changes" file for 2.0.x kernels and
14 therefore owes credit to the same people as that file (Jared Mauch,
15 Axel Boldt, Alessandro Sigala, and countless other users all over the
16 'net).  Please feel free to submit changes, corrections, gripes,
17 flames, money, etc. to me (kaboom@gatech.edu).  If you do so, you don't
18 need to bother doing so in the form of a diff, as this is generated by
19 texinfo so a diff is useless anyway (though I can incorporate one by
20 hand if you insist upon sending it that way ;-).
22    For those of you in Europe,
23 http://www.datanet.hu/generations/linux/Changes2.html is an
24 English-language HTML version.
26    The most current version should always be available from
27 http://cyberbuzz.gatech.edu/kaboom/linux/ as well.
29    Voir
30 http://www.linux-france.com/article/sys/Changes-2.2/Changes-2.2.1.html
31 pour la traduction français.
33    Also, don't forget http://www.linuxhq.com/ for all your Linux kernel
34 needs.
36 Last updated: March 16, 1999
37 Current Author: Chris Ricker (kaboom@gatech.edu or chris.ricker@m.cc.utah.edu).
39 Current Minimal Requirements
40 ****************************
42    Upgrade to at *least* these software revisions before thinking you've
43 encountered a bug!  If you're unsure what version you're currently
44 running, the suggested command should tell you.
46 - Kernel modutils        2.1.121                 ; insmod -V
47 - Gnu C                  2.7.2.3                 ; gcc --version
48 - Binutils               2.8.1.0.23              ; ld -v
49 - Linux libc5 C Library  5.4.46                  ; ls -l /lib/libc*
50 - Linux libc6 C Library  2.0.7pre6               ; ls -l /lib/libc*
51 - Dynamic Linker (ld.so) 1.9.9                   ; ldd --version or ldd -v
52 - Linux C++ Library      2.7.2.8                 ; ls -l /usr/lib/libg++.so.*
53 - Procps                 1.2.9                   ; ps --version
54 - Procinfo               16                      ; procinfo -v
55 - Psmisc                 17                      ; pstree -V
56 - Net-tools              1.50                    ; hostname -V
57 - Loadlin                1.6a
58 - Sh-utils               1.16                    ; basename --v
59 - Autofs                 3.1.1                   ; automount --version
60 - NFS                    2.2beta40               ; showmount --version
61 - Bash                   1.14.7                  ; bash -version
62 - Ncpfs                  2.2.0                   ; ncpmount -v
63 - Pcmcia-cs              3.0.7                   ; cardmgr -V
64 - PPP                    2.3.5                   ; pppd --version
65 - Util-linux             2.9i                    ; chsh -v
67 Upgrade notes
68 *************
70 General Information
71 ===================
73    <CTRL><ALT><DEL> now performs a cold reboot instead of a warm reboot
74 for increased hardware compatibility.  If you want a warm reboot and
75 know it works on your hardware, add a "reboot=warm" command line option
76 in LILO.  A small number of machines need "reboot=bios" to reboot via
77 the BIOS.
79    Also, please remember that cua* devices are now obsolete.  Switch to
80 the corresponding ttyS* device instead (e.g., cua0 -> ttyS0, cua1 ->
81 ttyS1, etc.).
83    In addition, some software still works, but needs to be compiled
84 against 2.2 headers for complete functionality.  Fdutils binaries
85 compiled under 2.0 or earlier kernels should be replaced with ones
86 compiled under 2.2, for example.
88    As of 2.1.115, support for the deprecated major 4 /dev/ttyp* devices
89 was removed.  If necessary (eg, you get "out of pty" error messages when
90 you obviously are not out of pty's), create major 3 /dev/tty* and major
91 2 /dev/pty* devices (see Documentation/devices.txt for more
92 information).  In general, you should make sure that your /dev
93 directory is up-to-date if you are experiencing any problems.
95    Optional support for Unix98 pty devices has also been added. If you
96 want to use the Unix98 ptys, you should be running at least
97 glibc-2.0.9x, and you must switch completely to Unix98 pty's.  The
98 general procedure for configuring Unix98 pty support is:
100 - Compile your kernel with CONFIG_UNIX98_PTYS and CONFIG_DEVPTS_FS.
101 - mknod /dev/ptmx c 5 2
102   chmod 666 /dev/ptmx
103   mkdir /dev/pts
104 - Add to /etc/fstab:
106   none            /dev/pts        devpts        gid=5,mode=620    0 0
108    (Note:  gid=5 is applicable for Red Hat systems for which group "tty" has
109    gid 5.  Adjust according to your distribution.  Use mode=600 if you want
110    "mesg n" to be default.)
111 - Mount /dev/pts
113    Frame buffer consoles ("fbcon") are now in the kernel for all
114 platforms, not just those non-Intel ones for which VGA text mode is
115 impossible.  VGAcon is still available for those who want it, but fbcon
116 has the advantage of providing a uniform graphical subsystem across all
117 Linux ports, and it displays a spiffy penguin logo on boot-up ;-).  For
118 more information, see the files in Documentation/fb/ ; you may also
119 need to download the fbset utilities.
121 Libc (libc5)
122 ============
124    Linux-2.2 is ELF-only.  You can still compile a.out apps if you
125 really want, but your kernel must be compiled ELF.  If you can't
126 currently compile ELF, consult the ELF howto at
127 http://metalab.unc.edu/mdw/HOWTO/ELF-HOWTO.html and upgrade your system
128 accordingly.
130    For modules to work, you need to be running libc-5.4.x or greater.
131 Since updates to libc fix other problems as well (security flaws, for
132 example) and since 5.4.7 is missing a few needed symbols, try to get
133 the latest 5.4.x you can.  Currently, libc-5.4.46 is the latest public
134 release.
136    If you upgrade to libc-5.4.x, you also have to upgrade your dynamic
137 linker (ld.so) to at least 1.9.9, or all sorts of weirdness will
138 happen.  Actually, ld.so-1.8.2 and later will work, but 1.9.9 is widely
139 available, so if you need to upgrade, use it.  If you get a release
140 later than 1.8.5, avoid 1.8.10 as it introduces a few bugs that are
141 fixed in later releases.  Please make sure you don't install ld.so-2.x
142 unless you're running glibc2 / libc6.
144    If you upgrade to libc-5.4.x, you may also need to upgrade ypbind if
145 you're using NIS.  For ypbind and glibc, you'll probably need the
146 ypbind-3.3-glibc5.diff patch available in the same place as the ypbind
147 source.
149    If you upgrade to libc-5.4.46, please read and pay attention to its
150 accompanying release notes.  The section about it breaking make is not a
151 joke.
153 GNU libc (libc6)
154 ================
156    Older versions of GNU libc (libc6) have a bug in the dynamic linker.
157 /etc/ld.so.cache gets mapped into memory and is never unmapped.  If one
158 of your boot scripts calls ldconfig, /etc/ld.so.cache is deleted.  Init,
159 however, still references that file; as of 2.1.122, the kernel will
160 consequently not be able to remount the root file system r/o at system
161 shutdown.  To fix this, upgrade to at least the pre6 release of GNU
162 libc 2.0.7.  As a temporary workaround, modify your boot scripts to do
163 the following before calling ldconfig:
165         ln -f /etc/ld.so.cache /etc/ld.so.cache.old
167 Modules
168 =======
170    You need to upgrade to the latest version of modutils for the Linux
171 2.2 kernel.  This version will also work with your 2.0 kernel.
173    As of 2.1.90-pre1, kerneld has been replaced by a kernel thread,
174 kmod.  See Documentation/kmod.txt for more information.  The main
175 user-level change this requires is modification to your init scripts to
176 check for the absence of /proc/sys/kernel/modprobe before starting
177 kerneld.
179 Binutils
180 ========
182    If you upgrade binutils, please read its accompanying release notes
183 to find out the proper way to upgrade it.  No, the instruction to "rm
184 `which encaps`" is not a joke.
186    The last public release of the binutils 2.8.x series was 2.8.1.0.23.
187 Binutils 2.8.1.0.25 to 2.9.1.0.2 are beta releases, and are known to be
188 very buggy.  Binutils 2.9.1 (note the absence of a suffix) from the FSF
189 should work, and binutils 2.9.1.0.7 and later releases are also good.
190 Either use binutils-2.8.1.0.23 or binutils-2.9.1.0.7 or later.  Glibc2
191 users should especially try to use the 2.9.1.0.x releases, as they
192 resolve known issues with glibc2 and binutils-2.8.x releases.
194 Gnu C
195 =====
197    You need at least GCC 2.7.2 to compile the kernel.  If you're
198 upgrading from an earlier release, you might as well get GCC 2.7.2.3,
199 the latest stable public release.  If you already have GCC 2.7.2 on
200 your system, you don't have to upgrade just so the kernel will work
201 (though feel free to upgrade if you want the gcc bug fixes).
203    Note that the latest compilers (egcs, pgcc, gcc 2.8) may do Bad
204 Things while compiling your kernel, particularly if absurd
205 optimizations (like -O9) are used.  Caveat emptor.  Currently, the only
206 C compiler available in a binary distribution is egcs.  Version 1.0.3
207 seems okay; if you have to have a binary, you may be successful using
208 that.  In general, however, gcc-2.7.2.3 is known to be stable, while
209 egcs and others have not been as thoroughly tested yet.
211 Networking Changes
212 ==================
214    Please read Documentation/networking/routing.txt and
215 Documentation/networking/policy-routing.txt for more information about
216 changes in routing code.  OSPF classes have been added, and interface
217 routes are generated automatically.
219    If for some reason you need to override this automatic default
220 routing, you have to specify the complete route specification (netmask,
221 device, etc.) for the kernel to accept it. Consequently, you need to
222 either remove interface routes from your init scripts or add missing
223 information to them if you need to replace the automatic routes.
225    Also note that some routes, such as loopback routes, do not show up
226 in some standard tools.  Check in /proc/net/rt_local to verify their
227 presence.
229    To turn on IP forwarding, issue the following command:   echo 1 >
230 /proc/sys/net/ipv4/ip_forward
232    Similar procedures are necessary to turn on other features.  If
233 something appears broken, check the /proc/sys/net/ipv4/ directory.  "1"
234 generally denotes enabled, while "0" generally denotes disabled.
236    If you're experiencing reports of lots of network errors, chances
237 are you need to upgrade to a more recent net-tools that understands the
238 new /proc/net/dev format.  This will also provide support for new
239 features like IPv6.
241    As of 2.1.102, the IP firewalling code has been replaced; ipfwadm
242 will no longer work.  You need to obtain "ipchains," available from
243 http://www.rustcorp.com/linux/ipchains/ , and use that instead of
244 ipfwadm.
246    To use masq forwarding you will need to obtain "ipmasqadm,"
247 available from http://juanjox.linuxhq.com/ .
249    DHCP clients for 2.0 do not work with the new networking code in the
250 2.2 kernel.  You will need to upgrade your dhcpcd / dhcpclient.
252    The ISDN code in the stock 2.2 kernel may not work for you.  If it
253 doesn't, look in ftp://ftp.suse.com/pub/isdn4linux for updated versions.
255    In 2.0.x the kernel could be configured to drop source routed IP
256 packets via a compile time configuration option.  In 2.2.x, this has
257 been replaced by a sysctl.  See Documentation/networking/ip-sysctl.txt
258 for more information.
260 Memory
261 ======
263    As of 2.1.41, the format of /proc/meminfo has changed.  This broke
264 many memory utils, which have to be upgraded.  Get the new procps-1.2
265 and you should be set.
267 Network File System
268 ===================
270    The NFS code in the kernel is currently being revised, resulting in
271 much-improved performance.  Also, amd is being phased out in favor of
272 the much better autofs.  You'll also have to get the appropriate utils
273 to use autofs as well as the new NFS utils.  In addition, you have the
274 choice of user-land NFS or kernel-level NFS (knfs).
276 Util-linux (including mount)
277 ============================
279    Among other changes made in the development of Linux kernel 2.2, the
280 128 meg limit on IA32 swap partition sizes has been eliminated.  To use
281 larger swap spaces, you need the new mkswap found in util-linux.  You
282 also need to upgrade util-linux to get the latest version of mount.
284    Partitions on 2048 byte sectored media (certain magneto opticals 
285 most prominently) were broken throughout the whole of 2.1 kernel 
286 series, meaning that you will be unable to use 2.1-partitioned media on 
287 Linux 2.2. This is not a 2.2 bug - 2.2 finally does the right thing! 
288 [If you have to interchange media between Linux 2.1 and 2.2, your best 
289 bet is to not use partitions at all but create the filesystem on the 
290 raw device (e.g. /dev/sda) instead. This is also known as the 
291 superfloppy format.]
293    To properly create partitions on 2048 byte sectored media with Linux
294 2.2, be sure to use no less than fdisk version 2.9i and invoke fdisk
295 using '-b 2048' as an option.
301    If you run Red Hat Linux or any other distribution that uses RPM,
302 you need to upgrade RPM to a 2.5.x or later version.
304 DOSEMU
305 ======
307    A new "stable" version of DOSEMU is available for 2.2 kernels.
308 Upgrade to 0.98.4 or later.
310 Loadlin
311 =======
313    Linux 2.1.22 and later releases use a new method of memory size
314 detection, requiring loadlin users to upgrade to loadlin-1.6a.
316 Sh-utils
317 ========
319    As of Linux-2.1.26, the Configure script ("make config") has been
320 updated to be POSIX-compliant.  As a result, your expr needs to be
321 updated.  Use sh-utils 1.16 or later.
323 Parallel Ports
324 ==============
326    As of 2.1.33, parallel port support can now by handled by the parport
327 driver.  Be aware that with Plug-and-Play support turned on, your
328 parallel port may no longer be where you expect it; for example, LPT1
329 (under DOS) was sometimes /dev/lp1 in Linux, but will probably be
330 /dev/lp0 with the new Plug-and-Play driver.  If printing breaks with
331 the new driver, try checking your lpd configuration.  A good source of
332 more information is the Documentation/parport.txt file included with
333 the kernel.
335 Setserial
336 =========
338    If you experience random problems (stuck lines, lost characters,
339 etc.) with serial lines under recent kernels, upgrading setserial
340 should help.
342 Syncookies
343 ==========
345    When you build your kernel with Syncookie support
346 (CONFIG_SYN_COOKIES) the syncookie code still defaults to off (unlike
347 the 2.0.30+ behavior).  You have to explicitly enable it by issuing the
348 following command: echo 1 > /proc/sys/net/ipv4/tcp_syncookies
350 Bash
351 ====
353    Old versions of Bash fail to properly handle symlinks, which can
354 cause problems when compiling modules.  Upgrade to at least 1.14 to fix
355 this problem.
357 Sysklogd
358 ========
360    Older versions of sysklogd sometimes segfault under 2.2 kernels.
361 Upgrading to the latest release fixes that problem as well as adding
362 support for new features like system power-off on halt (with
363 appropriate incantations of halt; see the man page) and automatic
364 decoding of kernel oopses.
366 Ncpfs
367 =====
369    To mount NetWare shares, you'll need to upgrade to a more recent
370 version of the ncpfs utils.
372 SMBfs
373 =====
375    To mount SMB (Samba / Windows) shares, you'll need to use the
376 smbmount utility included with release 2.0 of Samba.
377 Documentation/filesystems/smbfs.txt has more information about this.
378 Note that smbmount must have been built against 2.2 headers to work
379 with 2.2; if all else fails, recompile it and hope it works ;-).  In
380 addition, Mike Warfield has a script and some information at
381 http://www.wittsend.com/mhw/smbmount.html that you will probably find
382 useful.
384 Pcmcia-cs
385 =========
387    If you use pcmcia cards, you'll need to upgrade the daemon and
388 support utils to the latest release of pcmcia-cs.
393    Due to changes in the routing code, those of you using PPP
394 networking will need to upgrade your pppd.
396 iBCS
397 ====
399    A new version of iBCS is necessary for 2.2 kernels.
401 AppleTalk
402 =========
404    Use the Asun version of netatalk for AppleTalk support, as Umich's
405 version is not compatible with 2.2 kernels.
407 Psmisc
408 ======
410    fuser, which comes with psmisc, reads /proc/*/fd/* to do its job.
411 Upgrade psmisc if 2.2 changes to /proc broke the version you're using.
413 Tunelp
414 ======
416    A new version of tunelp is available which will allow you to enable
417 "trustirq" mode, improving printing while using IRQ-driven lp ports.
419 PCI utils
420 =========
422    Linux PCI utils are available; these include lspci, which displays
423 the detailed information about your system's PCI devices which used to
424 be in /proc/pci, and setpci, which allws you to read and write
425 configuration registers on your PCI devices.
427 Xosview
428 =======
430    Changes to the /proc interface require a recent xosview.
432 RealPlayer
433 ==========
435    Current releases of Real Player 5.0 depend on a bug in the sound
436 sub-system which is no longer there.  Consequently, they don't work.
437 Real is aware of the problem and should have an updated version of the
438 software available shortly.  In the mean time, you can always try
439 backing up your copy of rvplayer, and then editing it by:
441    dd if=/dev/zero of=rvplayer bs=1 count=1 seek=657586 conv=notrunc
442    dd if=/dev/zero of=rvplayer bs=1 count=1 seek=665986 conv=notrunc
444    If you're lucky, you'll then have sound....
446    You may also need to edit it with
448    dd if=/dev/zero of=rvplayer bs=1 count=1 seek=702554 conv=notrunc
450    as well.  Alternately, download rpopen from
451 http://onramp.i2k.com/~jeffd/rpopen/ and pre-load it before you run
452 rvplayer (it's a shared object which blocks rvplayer from doing the
453 NONBLOCKing open of /dev/dsp).
455 Quotas
456 ======
458    If you are using large quotas, you should upgrade your quota utils;
459 newer versions count file sizes in blocks instead of bytes, providing
460 an upper limit of terabytes instead of 4 GB.
462 Ping
463 ====
465    Most distributed ping clients are buggy.  Get an updated one from the
466 iputils package.
468 Patch
469 =====
471    Really old versions of patch cannot delete files.  This can be a
472 problem if you try to upgrade via patches.  If, for example, you are
473 unable to compile Linux 2.2, you may have an outdated version of patch.
474 Upgrade, re-patch the kernel, and try again.
476 Process accounting
477 ==================
479    If you use process accounting, you need to recompile the package
480 against 2.2 kernel includes for it to work properly.  Furthermore, when
481 you do so, watch out for a quirky configure script.  Your generated
482 config.h file needs to
484    #define HAVE_LINUX_ACCT_H
486    but instead it often has
488    /* #undef HAVE_LINUX_ACCT_H */
490    so be sure to check that when you recompile.
492 Where to get the files
493 **********************
495 Binutils
496 ========
498 The 2.8.1.0.23 release:
499 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/binutils-2.8.1.0.23.bin.tar.gz
500 ftp://metalab.unc.edu/pub/Linux/GCC/binutils-2.8.1.0.23.bin.tar.gz
501 Installation notes:
502 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/release.binutils-2.8.1.0.23
503 ftp://metalab.unc.edu/pub/Linux/GCC/release.binutils-2.8.1.0.23
505 The 2.9.1.0.15 release:
506 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/binutils-2.9.1.0.15-glibc.x86.tar.gz
507 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/binutils-2.9.1.0.15-libc5.x86.tar.gz
508 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/binutils-2.9.1.0.15.tar.gz
509 ftp://metalab.unc.edu/pub/Linux/GCC/binutils-2.9.1.0.15-glibc.x86.tar.gz
510 ftp://metalab.unc.edu/pub/Linux/GCC/binutils-2.9.1.0.15-libc5.x86.tar.gz
511 ftp://metalab.unc.edu/pub/Linux/GCC/binutils-2.9.1.0.15.tar.gz
512 Installation notes:
513 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/release.binutils-2.9.1.0.15
514 ftp://metalab.unc.edu/pub/Linux/GCC/release.binutils-2.9.1.0.15
516 Gnu C
517 =====
519 The egcs-1.0.3 release:
520 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/egcs-1.0.3-glibc.x86.tar.bz2
521 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/egcs-1.0.3-libc5.x86.tar.bz2
522 ftp://metalab.unc.edu/pub/Linux/GCC/egcs-1.0.3-glibc.x86.tar.bz2
523 ftp://metalab.unc.edu/pub/Linux/GCC/egcs-1.0.3-libc5.x86.tar.bz2
524 Installation notes:
525 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/release.egcs-1.0.3
526 ftp://metalab.unc.edu/pub/Linux/GCC/release.egcs-1.0.3
528 Gnu C 2.7.2.3 source:
529 ftp://ftp.gnu.org/gnu/gcc/gcc-2.7.2.3.tar.gz
530 ftp://metalab.unc.edu/pub/gnu/gcc-2.7.2.3.tar.gz
532 Linux C Library
533 ===============
535 The (libc5) 5.4.46 release:
536 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/libc-5.4.46.bin.tar.gz
537 ftp://metalab.unc.edu/pub/Linux/GCC/libc-5.4.46.bin.tar.gz
538 Installation notes for 5.4.46:
539 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/release.libc-5.4.46
540 ftp://metalab.unc.edu/pub/Linux/GCC/release.libc-5.4.46
542 The (libc6) GNU libc 2.0.7pre6 release:
543 ftp://ftp.kernel.org/pub/software/libs/glibc/glibc-2.0.7pre6.tar.gz
544 ftp://ftp.kernel.org/pub/software/libs/glibc/glibc-2.0.7pre6.tar.bz2
546 Linux C++ Library
547 =================
549 The 2.7.2 release:
550 ftp://ftp.gnu.org/gnu/libg++/libg++-2.7.2.tar.gz
552 Dynamic Linker
553 ==============
555 The 1.9.9 release:
556 ftp://tsx-11.mit.edu/pub/linux/packages/GCC/ld.so-1.9.9.tar.gz
557 ftp://metalab.unc.edu/pub/Linux/GCC/ld.so-1.9.9.tar.gz
559 Modules utilities
560 =================
562 The 2.1.121 release:
563 ftp://ftp.kernel.org/pub/linux/kernel/v2.1/modutils-2.1.121.tar.gz
565 Procps utilities
566 ================
568 The 1.2 release:
569 ftp://tsx-11.mit.edu/pub/linux/sources/usr.bin/procps-1.2.9.tar.gz
570 ftp://metalab.unc.edu/pub/Linux/system/status/ps/procps-1.2.9.tgz
572 Procinfo utilities
573 ==================
575 The 16 release:
576 ftp://ftp.cistron.nl/pub/people/svm/procinfo-16.tar.gz
578 Psmisc utilities
579 ================
581 The 17 release:
582 ftp://lrcftp.epfl.ch/pub/linux/local/psmisc/psmisc-17.tar.gz
583 ftp://metalab.unc.edu/pub/Linux/system/status/ps/psmisc-17.tar.gz
585 RPM utilities
586 =============
588 The 2.5.1 source release:
589 ftp://ftp.rpm.org/pub/rpm/dist/rpm-2.5.x/rpm-2.5.1-1.src.rpm
590 ftp://ftp.rpm.org/pub/rpm/dist/rpm-2.5.x/rpm-2.5.1.tar.gz
592 DOSEMU
593 ======
595 The 0.98.1 release:
596 ftp://tsx-11.mit.edu/pub/linux/ALPHA/dosemu/dosemu-0.98.4.tgz
597 ftp://ftp.dosemu.org/dosemu/dosemu-0.98.4.tgz
599 Loadlin
600 =======
602 The 1.6a release:
603 ftp://ftp.suse.com/pub/loadlin/update-1.6a/loadlin.exe.gz
604 ftp://elserv.ffm.fgan.de/pub/linux/loadlin-1.6/update-1.6a/loadlin.exe.gz
606 Sh-utils
607 ========
609 The 1.16 release:
610 ftp://metalab.unc.edu/pub/gnu/sh-utils-1.16.tar.gz
611 ftp://ftp.gnu.org/gnu/sh-utils/sh-utils-1.16.tar.gz
613 Util-linux
614 ==========
616 The 2.9 release:
617 ftp://ftp.win.tue.nl/pub/linux/utils/util-linux/util-linux-2.9i.tar.gz
619 Autofs
620 ======
622 The 3.1.3 release:
623 ftp://ftp.kernel.org/pub/linux/daemons/autofs/autofs-3.1.3.tar.gz
628 The user-land 2.2beta40 release:
629 ftp://ftp.mathematik.th-darmstadt.de/pub/linux/okir/dontuse/nfs-server-2.2beta40.tar.gz
630 ftp://linux.nrao.edu/mirrors/fb0429.mathematik.th-darmstadt.de/pub/linux/okir/dontuse/nfs-server-2.2beta40.tar.gz
632 The kernel-level 12/04/98 release:
633 ftp://ftp.yggdrasil.com/private/hjl/knfsd-981204.tar.gz
634 ftp://ftp.kernel.org/pub/linux/devel/gcc/knfsd-981204.tar.gz
636 Net-tools
637 =========
639 The 1.50 release:
640 ftp://ftp.cs-ipv6.lancs.ac.uk/pub/Code/Linux/Net_Tools/net-tools-1.50.tar.gz
641 http://www.tazenda.demon.co.uk/phil/net-tools/net-tools-1.50.tar.gz
643 Ypbind
644 ======
646 The 3.3 release:
647 ftp://ftp.kernel.org/pub/linux/utils/net/NIS/ypbind-3.3.tar.gz
649 Sysklogd
650 ========
652 The 1.3-31 release:
653 ftp://metalab.unc.edu/pub/Linux/system/daemons/sysklogd-1.3-31.tar.gz
655 Bash
656 ====
658 The 1.14.7 release:
659 ftp://ftp.gnu.org/gnu/bash/bash-1.14.7.tar.gz
661 The 2.02.1 release:
662 ftp://ftp.gnu.org/gnu/bash/bash-2.02.1.tar.gz
664 Ncpfs
665 =====
667 The 2.2.0 release:
668 ftp://ftp.gwdg.de/pub/linux/misc/ncpfs/ncpfs-2.2.0.tgz
670 SMBfs
671 =====
673 The 2.0.0 release of Samba:
674 ftp://ftp.samba.org/pub/samba/samba-2.0.0.tar.gz
676 Pcmcia-cs
677 =========
679 The 3.0.7 release:
680 ftp://hyper.stanford.edu/pub/pcmcia/pcmcia-cs.3.0.7.tar.gz
682 Setserial
683 =========
685 The 2.15 release:
686 ftp://tsx-11.mit.edu/pub/linux/sources/sbin/setserial-2.15.tar.gz
687 ftp://metalab.unc.edu/pub/Linux/system/serial/setserial-2.15.tar.gz
692 The 2.3.5 release:
693 ftp://cs.anu.edu.au/pub/software/ppp/ppp-2.3.5.tar.gz
695 IP Chains
696 =========
698 The 1.3.8 release:
699 ftp://ftp.rustcorp.com/ipchains/ipchains-1.3.8.tar.gz
700 ftp://ftp.rustcorp.com/ipchains/ipchains-1.3.8.tar.bz2
702 IP Masq Adm
703 ===========
705 The 0.4.2 release:
706 http://juanjox.linuxhq.com/ipmasqadm-0.4.2.tar.gz
708 DHCP clients
709 ============
711 The 2.0b1p18 ISC dhcpclient release:
712 ftp://ftp.isc.org/isc/dhcp/test/dhcp-2.0b1pl8.tar.gz
714 The 1.3.17-pl2 PhysTech dhcpcd release:
715 ftp://ftp.phystech.com/pub/dhcpcd-1.3.17-pl2.tar.gz
717 iBCS
718 ====
720 The 11/05/98 release:
721 ftp://tsx-11.mit.edu/pub/linux/BETA/ibcs2/ibcs-2.1-981105-ALPHA.tar.gz
723 Asun netatalk
724 =============
726 The 2.0a18.2 release:
727 ftp://ftp.u.washington.edu/pub/user-supported/asun/netatalk-1.4b2+asun2.0a18.2.tar.gz
729 Fbset
730 =====
732 The 11/04/98 release:
733 http://www.cs.kuleuven.ac.be/~geert/bin/fbset-2.0-pre-19981104.tar.gz
735 PCI utils
736 =========
738 The 1.09 release:
739 ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/pciutils-1.09.tar.gz
740 ftp://metalab.unc.edu/pub/Linux/hardware/pciutils-1.09.tar.gz
742 Tunelp
743 ======
745 The 0-2.1.131 release:
746 ftp://e-mind.com/pub/linux/tunelp/tunelp-0-2.1.131.tar.gz
748 Xosview
749 =======
751 The 1.6.1 release:
752 ftp://metalab.unc.edu/pub/Linux/system/status/xstatus/xosview-1.6.1.tar.gz
754 Quota utils
755 ===========
757 The 1.55 release:
758 ftp://ftp.uk.linux.org/pub/linux/sct/quota/quota-1.55-10.i386.rpm
759 ftp://ftp.uk.linux.org/pub/linux/sct/quota/quota-1.55-10.src.rpm
761 IP utils
762 ========
764 The 03/01/99 release:
765 ftp://ftp.inr.ac.ru/ip-routing/iproute2-2.1.99-now-ss990301.tar.gz
767 Patch
768 =====
770 The 2.5 release:
771 ftp://ftp.gnu.org/gnu/patch/patch-2.5.tar.gz
773 Other Info
774 ==========
776    Please remember that most of these utils are available on your
777 favorite local linux mirror.  If you can, please get them from a closer
778 site before checking metalab or tsx-11.
780    You may also want to check for updated versions of this software in a
781 package format for the distribution you use.
783    For those of you running Red Hat (or RPM on a different
784 distribution), most of these are available in RPM format.  Check around
785 your favorite Red Hat mirror site before installing the non-RPM
786 version.  Remember, you might need to use the --force option to get the
787 upgrade to install.  ftp://contrib.redhat.com/ ,
788 ftp://developer.redhat.com/ , or ftp://updates.redhat.com/  will have
789 almost everything you need, and Red Hat 5.2 ships with most necessary
790 software.
792    Those of you running Debian (or a different distribution that
793 supports .deb packages) can look in the "unstable" and
794 "project/experimental" directories of your favorite Debian mirror.  The
795 Debian 2.0 release ships with most packages you need as well.
797 Please send info about any other packages that 2.2 "broke" or about any
798 new features of 2.2 that require extra or new packages for use to Chris
799 Ricker (kaboom@gatech.edu or chris.ricker@m.cc.utah.edu).