Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | Intro |
| 2 | ===== |
| 3 | |
| 4 | This document is designed to provide a list of the minimum levels of |
Linus Torvalds | 5adaf85 | 2011-07-11 16:48:38 -0700 | [diff] [blame] | 5 | software necessary to run the 3.0 kernels. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | |
| 7 | This document is originally based on my "Changes" file for 2.0.x kernels |
| 8 | and therefore owes credit to the same people as that file (Jared Mauch, |
| 9 | Axel Boldt, Alessandro Sigala, and countless other users all over the |
| 10 | 'net). |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | Current Minimal Requirements |
| 13 | ============================ |
| 14 | |
| 15 | Upgrade to at *least* these software revisions before thinking you've |
| 16 | encountered a bug! If you're unsure what version you're currently |
| 17 | running, the suggested command should tell you. |
| 18 | |
Linus Torvalds | 5adaf85 | 2011-07-11 16:48:38 -0700 | [diff] [blame] | 19 | Again, keep in mind that this list assumes you are already functionally |
| 20 | running a Linux kernel. Also, not all tools are necessary on all |
| 21 | systems; obviously, if you don't have any ISDN hardware, for example, |
| 22 | you probably needn't concern yourself with isdn4k-utils. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Kevin | bf5777b | 2014-12-22 20:00:36 -0500 | [diff] [blame] | 24 | o GNU C 3.2 # gcc --version |
| 25 | o GNU make 3.80 # make --version |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | o binutils 2.12 # ld -v |
| 27 | o util-linux 2.10o # fdformat --version |
| 28 | o module-init-tools 0.9.10 # depmod -V |
Bill Nottingham | 242f45d | 2009-01-29 16:28:40 -0800 | [diff] [blame] | 29 | o e2fsprogs 1.41.4 # e2fsck -V |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | o jfsutils 1.1.3 # fsck.jfs -V |
Christian Kujau | e06c374 | 2011-03-22 16:35:02 -0700 | [diff] [blame] | 31 | o reiserfsprogs 3.6.3 # reiserfsck -V |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | o xfsprogs 2.6.0 # xfs_db -V |
Bill Nottingham | 242f45d | 2009-01-29 16:28:40 -0800 | [diff] [blame] | 33 | o squashfs-tools 4.0 # mksquashfs -version |
| 34 | o btrfs-progs 0.18 # btrfsck |
Robert P. J. Day | e412171 | 2006-09-11 12:39:19 -0400 | [diff] [blame] | 35 | o pcmciautils 004 # pccardctl -V |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | o quota-tools 3.09 # quota -V |
| 37 | o PPP 2.4.0 # pppd --version |
| 38 | o isdn4k-utils 3.1pre1 # isdnctrl 2>&1|grep version |
| 39 | o nfs-utils 1.0.5 # showmount --version |
| 40 | o procps 3.2.0 # ps --version |
John Levon | 0c0a400 | 2005-06-23 22:02:47 -0700 | [diff] [blame] | 41 | o oprofile 0.9 # oprofiled --version |
Christian Kujau | e06c374 | 2011-03-22 16:35:02 -0700 | [diff] [blame] | 42 | o udev 081 # udevd --version |
| 43 | o grub 0.93 # grub --version || grub-install --version |
| 44 | o mcelog 0.6 # mcelog --version |
Jan Engelhardt | d879e19 | 2010-03-22 19:39:04 +0100 | [diff] [blame] | 45 | o iptables 1.4.2 # iptables -V |
David Howells | 283e8ba | 2015-09-25 16:31:46 +0100 | [diff] [blame^] | 46 | o openssl & libcrypto 1.0.0 # openssl version |
Jan Engelhardt | 7a92263 | 2009-12-14 14:52:10 +0100 | [diff] [blame] | 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | Kernel compilation |
| 50 | ================== |
| 51 | |
| 52 | GCC |
| 53 | --- |
| 54 | |
| 55 | The gcc version requirements may vary depending on the type of CPU in your |
Andrew Morton | a136564 | 2006-01-08 01:04:09 -0800 | [diff] [blame] | 56 | computer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | Make |
| 59 | ---- |
| 60 | |
Kevin | bf5777b | 2014-12-22 20:00:36 -0500 | [diff] [blame] | 61 | You will need GNU make 3.80 or later to build the kernel. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | Binutils |
| 64 | -------- |
| 65 | |
| 66 | Linux on IA-32 has recently switched from using as86 to using gas for |
| 67 | assembling the 16-bit boot code, removing the need for as86 to compile |
| 68 | your kernel. This change does, however, mean that you need a recent |
| 69 | release of binutils. |
| 70 | |
Jose Luis Perez Diez | 0821962 | 2009-06-17 16:26:30 -0700 | [diff] [blame] | 71 | Perl |
| 72 | ---- |
| 73 | |
| 74 | You will need perl 5 and the following modules: Getopt::Long, Getopt::Std, |
| 75 | File::Basename, and File::Find to build the kernel. |
| 76 | |
Alan | 221069b | 2014-05-19 14:02:17 +0100 | [diff] [blame] | 77 | BC |
| 78 | -- |
| 79 | |
| 80 | You will need bc to build kernels 3.10 and higher |
| 81 | |
Jose Luis Perez Diez | 0821962 | 2009-06-17 16:26:30 -0700 | [diff] [blame] | 82 | |
David Howells | 3f1d44a | 2015-08-27 11:13:36 +0100 | [diff] [blame] | 83 | OpenSSL |
| 84 | ------- |
| 85 | |
| 86 | Module signing and external certificate handling use the OpenSSL program and |
| 87 | crypto library to do key creation and signature generation. |
| 88 | |
| 89 | You will need openssl to build kernels 3.7 and higher if module signing is |
| 90 | enabled. You will also need openssl development packages to build kernels 4.3 |
| 91 | and higher. |
| 92 | |
| 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | System utilities |
| 95 | ================ |
| 96 | |
| 97 | Architectural changes |
| 98 | --------------------- |
| 99 | |
| 100 | DevFS has been obsoleted in favour of udev |
| 101 | (http://www.kernel.org/pub/linux/utils/kernel/hotplug/) |
| 102 | |
| 103 | 32-bit UID support is now in place. Have fun! |
| 104 | |
| 105 | Linux documentation for functions is transitioning to inline |
| 106 | documentation via specially-formatted comments near their |
| 107 | definitions in the source. These comments can be combined with the |
| 108 | SGML templates in the Documentation/DocBook directory to make DocBook |
| 109 | files, which can then be converted by DocBook stylesheets to PostScript, |
| 110 | HTML, PDF files, and several other formats. In order to convert from |
| 111 | DocBook format to a format of your choice, you'll need to install Jade as |
| 112 | well as the desired DocBook stylesheets. |
| 113 | |
| 114 | Util-linux |
| 115 | ---------- |
| 116 | |
| 117 | New versions of util-linux provide *fdisk support for larger disks, |
| 118 | support new options to mount, recognize more supported partition |
| 119 | types, have a fdformat which works with 2.4 kernels, and similar goodies. |
| 120 | You'll probably want to upgrade. |
| 121 | |
| 122 | Ksymoops |
| 123 | -------- |
| 124 | |
Jesper Juhl | 62a07e6 | 2005-11-07 01:01:03 -0800 | [diff] [blame] | 125 | If the unthinkable happens and your kernel oopses, you may need the |
| 126 | ksymoops tool to decode it, but in most cases you don't. |
Linus Torvalds | 5adaf85 | 2011-07-11 16:48:38 -0700 | [diff] [blame] | 127 | It is generally preferred to build the kernel with CONFIG_KALLSYMS so |
| 128 | that it produces readable dumps that can be used as-is (this also |
| 129 | produces better output than ksymoops). If for some reason your kernel |
| 130 | is not build with CONFIG_KALLSYMS and you have no way to rebuild and |
| 131 | reproduce the Oops with that option, then you can still decode that Oops |
| 132 | with ksymoops. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
| 134 | Module-Init-Tools |
| 135 | ----------------- |
| 136 | |
| 137 | A new module loader is now in the kernel that requires module-init-tools |
| 138 | to use. It is backward compatible with the 2.4.x series kernels. |
| 139 | |
| 140 | Mkinitrd |
| 141 | -------- |
| 142 | |
| 143 | These changes to the /lib/modules file tree layout also require that |
| 144 | mkinitrd be upgraded. |
| 145 | |
| 146 | E2fsprogs |
| 147 | --------- |
| 148 | |
| 149 | The latest version of e2fsprogs fixes several bugs in fsck and |
| 150 | debugfs. Obviously, it's a good idea to upgrade. |
| 151 | |
| 152 | JFSutils |
| 153 | -------- |
| 154 | |
| 155 | The jfsutils package contains the utilities for the file system. |
| 156 | The following utilities are available: |
| 157 | o fsck.jfs - initiate replay of the transaction log, and check |
| 158 | and repair a JFS formatted partition. |
| 159 | o mkfs.jfs - create a JFS formatted partition. |
| 160 | o other file system utilities are also available in this package. |
| 161 | |
| 162 | Reiserfsprogs |
| 163 | ------------- |
| 164 | |
| 165 | The reiserfsprogs package should be used for reiserfs-3.6.x |
| 166 | (Linux kernels 2.4.x). It is a combined package and contains working |
| 167 | versions of mkreiserfs, resize_reiserfs, debugreiserfs and |
| 168 | reiserfsck. These utils work on both i386 and alpha platforms. |
| 169 | |
| 170 | Xfsprogs |
| 171 | -------- |
| 172 | |
| 173 | The latest version of xfsprogs contains mkfs.xfs, xfs_db, and the |
| 174 | xfs_repair utilities, among others, for the XFS filesystem. It is |
| 175 | architecture independent and any version from 2.0.0 onward should |
| 176 | work correctly with this version of the XFS kernel code (2.6.0 or |
| 177 | later is recommended, due to some significant improvements). |
| 178 | |
Dominik Brodowski | 5085cb2 | 2005-06-27 16:28:45 -0700 | [diff] [blame] | 179 | PCMCIAutils |
| 180 | ----------- |
| 181 | |
Simon Danner | 00703e0 | 2014-09-06 15:44:06 +0200 | [diff] [blame] | 182 | PCMCIAutils replaces pcmcia-cs. It properly sets up |
Dominik Brodowski | 5085cb2 | 2005-06-27 16:28:45 -0700 | [diff] [blame] | 183 | PCMCIA sockets at system startup and loads the appropriate modules |
| 184 | for 16-bit PCMCIA devices if the kernel is modularized and the hotplug |
| 185 | subsystem is used. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | Quota-tools |
| 188 | ----------- |
| 189 | |
| 190 | Support for 32 bit uid's and gid's is required if you want to use |
| 191 | the newer version 2 quota format. Quota-tools version 3.07 and |
| 192 | newer has this support. Use the recommended version or newer |
| 193 | from the table above. |
| 194 | |
| 195 | Intel IA32 microcode |
| 196 | -------------------- |
| 197 | |
| 198 | A driver has been added to allow updating of Intel IA32 microcode, |
Greg Kroah-Hartman | 890fbae | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 199 | accessible as a normal (misc) character device. If you are not using |
| 200 | udev you may need to: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | mkdir /dev/cpu |
| 203 | mknod /dev/cpu/microcode c 10 184 |
| 204 | chmod 0644 /dev/cpu/microcode |
| 205 | |
| 206 | as root before you can use this. You'll probably also want to |
| 207 | get the user-space microcode_ctl utility to use with this. |
| 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | udev |
| 210 | ---- |
| 211 | udev is a userspace application for populating /dev dynamically with |
Greg Kroah-Hartman | 890fbae | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 212 | only entries for devices actually present. udev replaces the basic |
Jan Engelhardt | 03a67a4 | 2006-11-30 05:32:19 +0100 | [diff] [blame] | 213 | functionality of devfs, while allowing persistent device naming for |
Greg Kroah-Hartman | 890fbae | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 214 | devices. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
Miklos Szeredi | 909021e | 2005-09-27 21:45:20 -0700 | [diff] [blame] | 216 | FUSE |
| 217 | ---- |
| 218 | |
| 219 | Needs libfuse 2.4.0 or later. Absolute minimum is 2.3.0 but mount |
| 220 | options 'direct_io' and 'kernel_cache' won't work. |
| 221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | Networking |
| 223 | ========== |
| 224 | |
| 225 | General changes |
| 226 | --------------- |
| 227 | |
| 228 | If you have advanced network configuration needs, you should probably |
| 229 | consider using the network tools from ip-route2. |
| 230 | |
| 231 | Packet Filter / NAT |
| 232 | ------------------- |
| 233 | The packet filtering and NAT code uses the same tools like the previous 2.4.x |
| 234 | kernel series (iptables). It still includes backwards-compatibility modules |
| 235 | for 2.2.x-style ipchains and 2.0.x-style ipfwadm. |
| 236 | |
| 237 | PPP |
| 238 | --- |
| 239 | |
| 240 | The PPP driver has been restructured to support multilink and to |
| 241 | enable it to operate over diverse media layers. If you use PPP, |
| 242 | upgrade pppd to at least 2.4.0. |
| 243 | |
Greg Kroah-Hartman | 890fbae | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 244 | If you are not using udev, you must have the device file /dev/ppp |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | which can be made by: |
| 246 | |
| 247 | mknod /dev/ppp c 108 0 |
| 248 | |
| 249 | as root. |
| 250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | Isdn4k-utils |
| 252 | ------------ |
| 253 | |
| 254 | Due to changes in the length of the phone number field, isdn4k-utils |
| 255 | needs to be recompiled or (preferably) upgraded. |
| 256 | |
| 257 | NFS-utils |
| 258 | --------- |
| 259 | |
Linus Torvalds | 5adaf85 | 2011-07-11 16:48:38 -0700 | [diff] [blame] | 260 | In ancient (2.4 and earlier) kernels, the nfs server needed to know |
| 261 | about any client that expected to be able to access files via NFS. This |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | information would be given to the kernel by "mountd" when the client |
| 263 | mounted the filesystem, or by "exportfs" at system startup. exportfs |
| 264 | would take information about active clients from /var/lib/nfs/rmtab. |
| 265 | |
| 266 | This approach is quite fragile as it depends on rmtab being correct |
| 267 | which is not always easy, particularly when trying to implement |
| 268 | fail-over. Even when the system is working well, rmtab suffers from |
| 269 | getting lots of old entries that never get removed. |
| 270 | |
Linus Torvalds | 5adaf85 | 2011-07-11 16:48:38 -0700 | [diff] [blame] | 271 | With modern kernels we have the option of having the kernel tell mountd |
| 272 | when it gets a request from an unknown host, and mountd can give |
| 273 | appropriate export information to the kernel. This removes the |
| 274 | dependency on rmtab and means that the kernel only needs to know about |
| 275 | currently active clients. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
| 277 | To enable this new functionality, you need to: |
| 278 | |
Robert P. J. Day | e412171 | 2006-09-11 12:39:19 -0400 | [diff] [blame] | 279 | mount -t nfsd nfsd /proc/fs/nfsd |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
| 281 | before running exportfs or mountd. It is recommended that all NFS |
| 282 | services be protected from the internet-at-large by a firewall where |
| 283 | that is possible. |
| 284 | |
Andi Kleen | 172d899 | 2009-04-28 23:37:02 +0200 | [diff] [blame] | 285 | mcelog |
| 286 | ------ |
| 287 | |
Paul Bolle | c8c3f7d | 2014-07-12 09:54:52 -0700 | [diff] [blame] | 288 | On x86 kernels the mcelog utility is needed to process and log machine check |
| 289 | events when CONFIG_X86_MCE is enabled. Machine check events are errors reported |
| 290 | by the CPU. Processing them is strongly encouraged. |
Andi Kleen | 172d899 | 2009-04-28 23:37:02 +0200 | [diff] [blame] | 291 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | Getting updated software |
| 293 | ======================== |
| 294 | |
| 295 | Kernel compilation |
| 296 | ****************** |
| 297 | |
Andrew Morton | a136564 | 2006-01-08 01:04:09 -0800 | [diff] [blame] | 298 | gcc |
| 299 | --- |
| 300 | o <ftp://ftp.gnu.org/gnu/gcc/> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
| 302 | Make |
| 303 | ---- |
| 304 | o <ftp://ftp.gnu.org/gnu/make/> |
| 305 | |
| 306 | Binutils |
| 307 | -------- |
| 308 | o <ftp://ftp.kernel.org/pub/linux/devel/binutils/> |
| 309 | |
David Howells | 3f1d44a | 2015-08-27 11:13:36 +0100 | [diff] [blame] | 310 | OpenSSL |
| 311 | ------- |
| 312 | o <https://www.openssl.org/> |
| 313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | System utilities |
| 315 | **************** |
| 316 | |
| 317 | Util-linux |
| 318 | ---------- |
| 319 | o <ftp://ftp.kernel.org/pub/linux/utils/util-linux/> |
| 320 | |
| 321 | Ksymoops |
| 322 | -------- |
| 323 | o <ftp://ftp.kernel.org/pub/linux/utils/kernel/ksymoops/v2.4/> |
| 324 | |
| 325 | Module-Init-Tools |
| 326 | ----------------- |
| 327 | o <ftp://ftp.kernel.org/pub/linux/kernel/people/rusty/modules/> |
| 328 | |
| 329 | Mkinitrd |
| 330 | -------- |
Justin P. Mattock | a655773 | 2010-07-03 15:46:13 -0700 | [diff] [blame] | 331 | o <https://code.launchpad.net/initrd-tools/main> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
| 333 | E2fsprogs |
| 334 | --------- |
| 335 | o <http://prdownloads.sourceforge.net/e2fsprogs/e2fsprogs-1.29.tar.gz> |
| 336 | |
| 337 | JFSutils |
| 338 | -------- |
| 339 | o <http://jfs.sourceforge.net/> |
| 340 | |
| 341 | Reiserfsprogs |
| 342 | ------------- |
Justin P. Mattock | a655773 | 2010-07-03 15:46:13 -0700 | [diff] [blame] | 343 | o <http://www.kernel.org/pub/linux/utils/fs/reiserfs/> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
| 345 | Xfsprogs |
| 346 | -------- |
Justin P. Mattock | a655773 | 2010-07-03 15:46:13 -0700 | [diff] [blame] | 347 | o <ftp://oss.sgi.com/projects/xfs/> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
Dominik Brodowski | 5085cb2 | 2005-06-27 16:28:45 -0700 | [diff] [blame] | 349 | Pcmciautils |
| 350 | ----------- |
| 351 | o <ftp://ftp.kernel.org/pub/linux/utils/kernel/pcmcia/> |
| 352 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | Quota-tools |
| 354 | ---------- |
| 355 | o <http://sourceforge.net/projects/linuxquota/> |
| 356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | DocBook Stylesheets |
| 358 | ------------------- |
Simon Danner | 03ebb7d | 2014-09-06 15:42:48 +0200 | [diff] [blame] | 359 | o <http://sourceforge.net/projects/docbook/files/docbook-dsssl/> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
Martin Waitz | 8b0c2d9 | 2005-05-01 08:59:27 -0700 | [diff] [blame] | 361 | XMLTO XSLT Frontend |
| 362 | ------------------- |
| 363 | o <http://cyberelk.net/tim/xmlto/> |
| 364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | Intel P6 microcode |
| 366 | ------------------ |
Simon Danner | 03ebb7d | 2014-09-06 15:42:48 +0200 | [diff] [blame] | 367 | o <https://downloadcenter.intel.com/> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | udev |
| 370 | ---- |
Simon Danner | 03ebb7d | 2014-09-06 15:42:48 +0200 | [diff] [blame] | 371 | o <http://www.freedesktop.org/software/systemd/man/udev.html> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | |
Miklos Szeredi | 909021e | 2005-09-27 21:45:20 -0700 | [diff] [blame] | 373 | FUSE |
| 374 | ---- |
| 375 | o <http://sourceforge.net/projects/fuse> |
| 376 | |
Andi Kleen | 172d899 | 2009-04-28 23:37:02 +0200 | [diff] [blame] | 377 | mcelog |
| 378 | ------ |
Simon Danner | 03ebb7d | 2014-09-06 15:42:48 +0200 | [diff] [blame] | 379 | o <http://www.mcelog.org/> |
Andi Kleen | 172d899 | 2009-04-28 23:37:02 +0200 | [diff] [blame] | 380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | Networking |
| 382 | ********** |
| 383 | |
| 384 | PPP |
| 385 | --- |
Justin P. Mattock | a655773 | 2010-07-03 15:46:13 -0700 | [diff] [blame] | 386 | o <ftp://ftp.samba.org/pub/ppp/> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
| 388 | Isdn4k-utils |
| 389 | ------------ |
Justin P. Mattock | a655773 | 2010-07-03 15:46:13 -0700 | [diff] [blame] | 390 | o <ftp://ftp.isdn4linux.de/pub/isdn4linux/utils/> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | |
| 392 | NFS-utils |
| 393 | --------- |
| 394 | o <http://sourceforge.net/project/showfiles.php?group_id=14> |
| 395 | |
| 396 | Iptables |
| 397 | -------- |
| 398 | o <http://www.iptables.org/downloads.html> |
| 399 | |
| 400 | Ip-route2 |
| 401 | --------- |
Andrew Shewmaker | 5d330cd | 2014-12-03 14:07:31 -0800 | [diff] [blame] | 402 | o <https://www.kernel.org/pub/linux/utils/net/iproute2/> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
| 404 | OProfile |
| 405 | -------- |
| 406 | o <http://oprofile.sf.net/download/> |
| 407 | |
| 408 | NFS-Utils |
| 409 | --------- |
| 410 | o <http://nfs.sourceforge.net/> |