home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / installed_progs / text / faqs / linux.info-sheet < prev    next >
Encoding:
Internet Message Format  |  1994-04-22  |  25.3 KB

  1. Subject: Linux INFO-SHEET
  2. Newsgroups: comp.os.linux.announce,comp.os.linux.help,comp.answers,news.answers
  3. From: johnsonm@stolaf.edu
  4. Date: Thu, 21 Apr 1994 09:37:31 GMT
  5.  
  6. Archive-name: linux/info-sheet
  7. Last-modified: 14 Mar 94
  8. Version: 3.06
  9.                              Linux Information Sheet 
  10.  
  11.                                   Version 3.06 
  12.  
  13.  
  14.         0.1 Introduction to Linux 
  15.  
  16.         Linux is a completely free reimplementation of the POSIX spec, 
  17.         with SYSV and BSD extensions (which means, it looks like unix, 
  18.         but does not come from the same source code base), which is 
  19.         available in both source code and binary form. It is copyrighted 
  20.         by Linus B. Torvalds (torvalds@kruuna.helsinki.fi) and other 
  21.         contributors and is freely redistributable under the terms of 
  22.         the GNU Public License. Linux runs only on 386/486 machines with 
  23.         an ISA or EISA bus. MCA (IBM's proprietary bus) is not currently 
  24.         supported because there is little available documentation. VLB 
  25.         and PCI local busses are both supported, although the NCR SCSI 
  26.         chip that is used in many PCI machines is not yet supported, but 
  27.         is currently in development. 
  28.  
  29.         Porting to other CPU's is likely to be difficult, as the kernel 
  30.         makes extensive use of 386 memory management and task 
  31.         primitives. However, this is becoming easier as the kernel 
  32.         becomes more general, and there is a port in progress for 
  33.         multiple Motorola 680x0 platforms, and ports are being 
  34.         considered to other platforms as well. Don't hold your breath, 
  35.         but if you are interested and able to contribute, you may find 
  36.         other developers who wish to work with you. 
  37.  
  38.         Linux is no longer considered to be in beta testing, as version 
  39.         1.0 was released on March 14, 1994. There are still bugs in the 
  40.         system, and new bugs will creep up and be fixed as time goes on. 
  41.         Because Linux follows the ``open development model'', all new 
  42.         versions will be released to the public, whether or not they are 
  43.         considered ``production quality''. 
  44.  
  45.         Linux is still free as of version 1.0, and will continue to be. 
  46.         Because of the nature of the GNU copyright which Linux is 
  47.         subject to, it would be illegal for it to be made not free. 
  48.  
  49.         If you wish to make sure that you have a stable version of 
  50.         Linux, you may get version 1.0, or may wait a few weeks from the 
  51.         release of a version which has attained the reputation of being 
  52.         stable among the bleeding edge who already use it, or may wait 
  53.         for another version which is officially released as a stable 
  54.         release, like version 1.0. 
  55.  
  56.         Most versions of Linux, beta or not, are quite stable, and you 
  57.         can keep using those if they do what you need and you don't want 
  58.         to be on the bleeding edge. One site had a computer running 
  59.         version 0.97 patchlevel 1 (dating from last summer) for over 136 
  60.         days without an error or crash. (It would have been longer if 
  61.         the backhoe operator hadn't mistaken a main power transformer 
  62.         for a dumpster...) 
  63.  
  64.         One thing to be aware of is that Linux is developed using an 
  65.         open and distributed model, instead of a closed and centralized 
  66.         model like much other software. This means that the current 
  67.         development version is always public (with up to a week or two's 
  68.         delay) so that anybody can use it. The result is that whenever a 
  69.         version with new functionality is released, it almost always 
  70.         contains bugs, but it also results in a very rapid development 
  71.         so that the bugs are found and corrected quickly, often in 
  72.         hours, as many people work to fix them. Furthermore, the bugs 
  73.         are generally discovered within hours of a kernel release, 
  74.         especially those which might endanger a user's data, so it is 
  75.         easy for an end-user to avoid these bugs. 
  76.  
  77.         In contrast, the closed and centralized model means that there 
  78.         is only one person or team working on the project, and they only 
  79.         release software that they think is working well. Often this 
  80.         leads to long intervals between releases, long waiting for bug 
  81.         fixes, and slower development. Of course, the latest release of 
  82.         such software to the public is often of higher quality, but the 
  83.         development speed is generally much slower. 
  84.  
  85.         As of March 14, 1994, the current version of Linux is 1.0! 
  86.  
  87.  
  88.         0.2 Linux Features 
  89.  
  90.  
  91.          * multitasking: several programs running at once. 
  92.  
  93.          * multiuser: several users on the same machine at once (and NO 
  94.            two-user licenses!). 
  95.  
  96.          * runs in 386 protected mode. 
  97.  
  98.          * has memory protection between processes, so that one program 
  99.            can't bring the whole system down. 
  100.  
  101.          * demand loads executables: Linux only reads from disk those 
  102.            parts of a program that are actually used. 
  103.  
  104.          * shared copy-on-write pages among executables. This means that 
  105.            multiple process can use the same memory to run in. When one 
  106.            tries to write to that memory, that page (4KB piece of 
  107.            memory) is copied somewhere else. Copy-on-write has two 
  108.            benefits: increasing speed and decreasing memory use. 
  109.  
  110.          * virtual memory using paging (not swapping whole processes) to 
  111.            disk: to a separate partition or a file in the filesystem, or 
  112.            both, with the possibility of adding more swapping areas 
  113.            during runtime (yes, they're still called swapping areas). A 
  114.            total of 16 of these 128 MB swapping areas can be used at 
  115.            once, for a theoretical total 2 GB of useable swap space. 
  116.  
  117.          * a unified memory pool for user programs and disk cache (so 
  118.            that all free memory can be used for caching, and the cache 
  119.            can be reduced when running large programs). 
  120.  
  121.          * dynamically linked shared libraries (DLL's)(static libraries 
  122.            too, of course). 
  123.  
  124.          * does core dumps for post-mortem analysis, allowing the use of 
  125.            a debugger on a program not only while it is running but also 
  126.            after it has crashed. 
  127.  
  128.          * mostly compatible with POSIX, System V, and BSD at the source 
  129.            level. 
  130.  
  131.          * all source code is available, including the whole kernel and 
  132.            all drivers, the development tools and all user programs; 
  133.            also, all of it is freely distributable. There are some 
  134.            commercial programs being provided for Linux now without 
  135.            source, but everything that has been free is still free. 
  136.  
  137.          * POSIX job control. 
  138.  
  139.          * pseudoterminals (pty's). 
  140.  
  141.          * 387-emulation in the kernel so that programs don't need to do 
  142.            their own math emulation. Every computer running Linux 
  143.            appears to have a math coprocessor. Of course, if your 
  144.            computer already contains an FPU, it will be used instead of 
  145.            the emulation, and you can even compile your own kernel with 
  146.            math emulation removed, for a small memory gain. 
  147.  
  148.          * support for many national or customized keyboards, and it is 
  149.            fairly easy to add new ones. 
  150.  
  151.          * multiple virtual consoles: several independent login sessions 
  152.            through the console, you switch by pressing a hot-key 
  153.            combination (not dependent on video hardware). 
  154.  
  155.          * Supports several common filesystems, including minix-1, 
  156.            Xenix, and all the system V filesystems, and has an advanced 
  157.            filesystem of its own, which offers filesystems of up to 4 
  158.            TB, and names up to 255 characters long. 
  159.  
  160.          * transparent access to MS-DOS partitions (or OS/2 FAT 
  161.            partitions) via a special filesystem: you don't need any 
  162.            special commands to use the MS-DOS partition, it looks just 
  163.            like a normal Unix filesystem (except for funny restrictions 
  164.            on filenames, permissions, and so on). MS-DOS 6 compressed 
  165.            partitions do not work at this time. 
  166.  
  167.          * read-only HPFS-2 support for OS/2 2.1 
  168.  
  169.          * CD-ROM filesystem which reads all standard formats of 
  170.            CD-ROMs. 
  171.  
  172.          * TCP/IP networking, including ftp, telnet, NFS, etc. 
  173.  
  174.  
  175.         0.3 Hardware Issues 
  176.  
  177.  
  178.         0.3.1 Minimal configuration 
  179.  
  180.         The following is probably the smallest possible configuration 
  181.         that Linux will work on: 386SX/16, 2 MB RAM, 1.44 MB or 1.2 MB 
  182.         floppy, any supported video card (+ keyboards, monitors, and so 
  183.         on of course). This should allow you to boot and test whether it 
  184.         works at all on the machine, but you won't be able to do 
  185.         anything useful. 
  186.  
  187.         In order to do something, you will want some hard disk space as 
  188.         well, 5 to 10 MB should suffice for a very minimal setup (with 
  189.         only the most important commands and perhaps one or two small 
  190.         applications installed, like, say, a terminal program). This is 
  191.         still very, very limited, and very uncomfortable, as it doesn't 
  192.         leave enough room to do just about anything, unless your 
  193.         applications are quite limited. It's generally not recommended 
  194.         for anything but testing if things work, and of course to be 
  195.         able to brag about small resource requirements. 
  196.  
  197.  
  198.         0.3.2 Usable configuration 
  199.  
  200.         If you are going to run computationally intensive programs, such 
  201.         as gcc, X, and TeX, you will probably want a faster processor 
  202.         than a 386SX/16, but even that should suffice if you are 
  203.         patient. 
  204.  
  205.         In practice, you need at least 4 MB of RAM if you don't use X, 
  206.         and 8 MB if you do. Also, if you want to have several users at a 
  207.         time, or run several large programs (compilations for example) 
  208.         at a time, you may want more than 4 MB of memory. It will still 
  209.         work with a smaller amount of memory (should work even with 2 
  210.         MB), but it will use virtual memory (using the hard drive as 
  211.         slow memory) and that will be so slow as to be unusable. 
  212.  
  213.         The amount of hard disk you need depends on what software you 
  214.         want to install. The normal basic set of Unix utilities, shells, 
  215.         and administrative programs should be comfortable in less than 
  216.         10 MB, with a bit of room to spare for user files. For a more 
  217.         complete system, get Slackware, MCC, TAMU, or (soon) Debian or 
  218.         Linux/PRO, and assume that you will need 60 to 200 MB, depending 
  219.         on what you choose to install and what distribution you get. Add 
  220.         whatever space you want to reserve for user files to these 
  221.         totals. With today's prices on hard drives, if you are buying a 
  222.         new system, it makes no sense to buy a drive that is too small. 
  223.         Get at least 200 MB, and you will not regret it. 
  224.  
  225.         Add more memory, more hard disk, a faster processor and other 
  226.         stuff depending on your needs, wishes and budget to go beyond 
  227.         the merely usable. In general, one big difference from DOS is 
  228.         that with Linux, adding memory makes a large difference, whereas 
  229.         with dos, extra memory doesn't make that much difference. This 
  230.         of course has something to do with DOS's 640KB limit. 
  231.  
  232.  
  233.         0.3.3 Supported hardware 
  234.  
  235.         CPU: Anything that runs 386 protected mode programs (all models 
  236.         of 386s and 486s should work; 286s don't work, and never will). 
  237.  
  238.         Architecture: ISA or EISA bus. MCA (mostly true blue PS/2's) 
  239.         does not work. Local busses (VLB and PCI) work. 
  240.  
  241.         RAM: Theoretically up to 1 GB. This has not been tested. Some 
  242.         people (including Linus) have noted that adding ram has slowed 
  243.         down their machine extremely without adding more cache at the 
  244.         same time, so if you add memory and find your machine slower, 
  245.         try adding more cache. 
  246.  
  247.         Data storage: Generic AT drives (IDE, 16 bit HD controllers with 
  248.         MFM or RLL) are supported, as are SCSI hard disks and CD-ROMs, 
  249.         with a supported SCSI adaptor. Generic XT controllers (8 bit 
  250.         controllers with MFM or RLL) are now also supported. Supported 
  251.         SCSI adaptors: Adaptec 1542, 1522, and 1740 in extended (not 
  252.         1542 compatible) mode, Seagate ST-01 and ST-02, Future Domain 
  253.         TMC-88x series (or any board based on the TMC950 chip) and 
  254.         TMC1660/1680, Ultrastor 14F, 24F and 34F, and Western Digital 
  255.         wd7000. SCSI and QIC-02 tapes are also supported. Support for 
  256.         QIC-80 tapes is now in ALPHA testing. Several CD-ROM devices are 
  257.         also supported, including Matsushita/Panasonic, Mitsumi, Sony, 
  258.         Soundblaster, Toshiba, and others. For exact models, check the 
  259.         hardware compatability HOWTO. 
  260.  
  261.         Video: VGA, EGA, CGA, or Hercules (and compatibles) work in text 
  262.         mode. For graphics and X, there is support for (at least) normal 
  263.         VGA, some super-VGA cards (most of the cards based on ET3000, 
  264.         ET4000, Paradise, and some Trident chipsets), S3 (except for 
  265.         Diamond Stealth cards, because the manufacturer won't tell how 
  266.         to program it), 8514/A, ATI MACH8, ATI MACH32, and hercules. 
  267.         (Linux uses the Xfree86 X server, so that determines what cards 
  268.         are supported.) 
  269.  
  270.         Networking: Western Digital 80x3, ne1000, ne2000, 3com503, 
  271.         3com509, Allied Telliesis AT1500 (said to be some of the 
  272.         fastest, as well as quite cheap), d-link pocket adaptors, SLIP, 
  273.         CSLIP, PLIP (Parallel Link IP), and more I have forgotten at the 
  274.         moment. 
  275.  
  276.         Other hardware: SoundBlaster, ProAudio Spectrum 16, Gravis 
  277.         Ultrasound, AST Fourport cards (with 4 serial ports), several 
  278.         models of Boca serial boards, the Usenet Serial Card II, several 
  279.         flavours of bus mice (Microsoft, Logitech, PS/2). 
  280.  
  281.  
  282.         0.4 An Incomplete List of Ported Programs and Other Software 
  283.  
  284.  
  285.         Most of the common Unix tools and programs have been ported to 
  286.         Linux, including almost all of the GNU stuff and many X clients 
  287.         from various sources. Actually, ported is often too strong a 
  288.         word, since many programs compile out of the box without 
  289.         modifications, or only small modifications, because Linux tracks 
  290.         POSIX quite closely. Unfortunately, there are not very many 
  291.         end-user applications at this time. Nevertheless, here is an 
  292.         incomplete list of software that is known to work under Linux. 
  293.  
  294.         Basic Unix commands: ls, tr, sed, awk and so on (you name it, 
  295.         we've probably got it). 
  296.  
  297.         Development tools: gcc, gdb, make, bison, flex, perl, rcs, cvs, 
  298.         gprof. 
  299.  
  300.         Graphical environments: X11R5 (Xfree86), MGR. 
  301.  
  302.         Editors: GNU Emacs, Lucid Emacs, MicroEmacs, jove, epoch, elvis 
  303.         (GNU vi), vim, vile, joe, pico, jed. 
  304.  
  305.         Shells: Bash (POSIX sh-compatible), zsh (include ksh 
  306.         compatiblity mode), pdksh, tcsh, csh, rc, ash (mostly 
  307.         sh-compatible), and many more. 
  308.  
  309.         Telecommunication: Taylor (BNU-compatible) UUCP, kermit, szrz, 
  310.         minicom, pcomm, xcomm, term/slap (runs multiple shells over one 
  311.         modem line), Seyon (popular X-windows communications program), 
  312.         and several fax (using class 2 modems) and voice-mail (using 
  313.         ZyXEL modems) packages are available. Of course, remote serial 
  314.         logins are supported. 
  315.  
  316.         News and mail: C-news, innd, trn, nn, tin, smail, elm, mh. 
  317.  
  318.         Textprocessing: TeX, groff, doc. 
  319.  
  320.         Games: Nethack, several Muds and X games, and lots of others. 
  321.         One of those games is looking through all the games available at 
  322.         tsx-11 and sunsite. 
  323.  
  324.         All of these programs (and this isn't even a hundredth of what 
  325.         is available) are freely available. 
  326.  
  327.  
  328.         0.5 Who uses Linux? 
  329.  
  330.  
  331.         Linux is freely available, and no one is required to register 
  332.         their copies with any central authority, so it is difficult to 
  333.         know how many people use Linux. Several businesses are now 
  334.         surviving solely on selling and supporting Linux, and very few 
  335.         Linux users use those businesses, relatively speaking, and the 
  336.         Linux newsgroups are some of the most heavily read on the 
  337.         internet, so the number is likely in the hundreds of thousands, 
  338.         but hard numbers are hard to come by. However, one brave soul, 
  339.         Harald T. Alvestrand, has decided to try, and asks that if you 
  340.         use Linux, you send a message to linux-counter@uninett.no with 
  341.         one of the following subjects: ``I use Linux at home'', ``I use 
  342.         Linux at work'', or ``I use Linux at home and at work''. He is 
  343.         also counting votes of ``I don't use Linux'', for some reason. 
  344.         He posts his counts to comp.os.linux.misc. 
  345.  
  346.  
  347.         0.6 Getting Linux 
  348.  
  349.  
  350.  
  351.         0.6.4 Anonymous FTP 
  352.  
  353.         New information: Matt Welsh has released a new version of hiw 
  354.         Installation and Getting Started guide. Also, the Linux 
  355.         documentation project (the LDP) has put out several other books 
  356.         in various states of completion, and these are available at 
  357.         sunsite.unc.edu:/pub/Linux/docs/LDP. Stay tuned to 
  358.         comp.os.linux.announce. 
  359.  
  360.         At least the following anonymous ftp sites carry Linux. 
  361.  
  362.  
  363.          Textual name                   Numeric address  Linux directory
  364.          =============================  ===============  ===============
  365.          tsx-11.mit.edu                 18.172.1.2       /pub/linux
  366.          sunsite.unc.edu                152.2.22.81      /pub/Linux
  367.          ftp.funet.fi                   128.214.248.6    /pub/OS/Linux
  368.          net.tamu.edu                   128.194.177.1    /pub/linux
  369.          ftp.mcc.ac.uk                  130.88.203.12    /pub/linux
  370.          src.doc.ic.ac.uk               146.169.2.1      /packages/linux
  371.          fgb1.fgb.mw.tu-muenchen.de     129.187.200.1    /pub/linux
  372.          ftp.informatik.tu-muenchen.de  131.159.0.110    /pub/Linux
  373.          ftp.dfv.rwth-aachen.de         137.226.4.111    /pub/linux
  374.          ftp.informatik.rwth-aachen.de  137.226.112.172  /pub/Linux
  375.          ftp.ibp.fr                     132.227.60.2     /pub/linux
  376.          kirk.bond.edu.au               131.244.1.1      /pub/OS/Linux
  377.          ftp.uu.net                     137.39.1.9       /systems/unix/linux
  378.          wuarchive.wustl.edu            128.252.135.4    mirrors/linux
  379.          ftp.win.tue.nl                 131.155.70.100   /pub/linux
  380.          ftp.stack.urc.tue.nl           131.155.2.71     /pub/linux
  381.          srawgw.sra.co.jp                                /Linux
  382.          cair.kaist.ac.kr                                /pub/Linux
  383.          ftp.denet.dk                   129.142.6.74     /pub/OS/linux
  384.          NCTUCCCA.edu.tw                140.111.1.10     /Operating-Systems/Linux
  385.          nic.switch.ch                  130.59.1.40      /mirror/linux/sunsite
  386.          monu1.ccmonash.edu.au          130.194.1.101    /pub/linux
  387.          cnuce_arch.cnr.it              131.114.1.10     /pub/Linux
  388.  
  389.  
  390.  
  391.         tsx-11.mit.edu and fgb1.fgb.mw.tu-muenchen.de are the official 
  392.         sites for Linux' GCC. Some sites mirror other sites. Please use 
  393.         the site closest (network-wise) to you whenever possible. 
  394.  
  395.         At least SunSite.unc.edu and ftp.informatik.tu-muenchen.de offer 
  396.         ftpmail services. Mail ftpmail@sunsite.unc.edu or 
  397.         ftp@informatik.tu-muenchen.de for help. 
  398.  
  399.         If you are lost, try looking at 
  400.         SunSite.unc.edu:/pub/Linux/distributions/, where several 
  401.         distributions are offered. 
  402.  
  403.  
  404.         0.6.5 Other methods of obtaining Linux 
  405.  
  406.         There are many BBS's that have Linux files. A list of them is 
  407.         occasionally posted to comp.os.linux.announce. Ask friends and 
  408.         user groups, or order one of the commmercial distributions. A 
  409.         list of these is contained in the Linux distribution HOWTO, 
  410.         available as 
  411.         sunsite.unc.edu:/pub/Linux/docs/HOWTO/distribution-HOWTO, and 
  412.         posted regularily to the comp.os.linux.announce newsgroup. 
  413.  
  414.  
  415.         0.6.6 Getting started 
  416.  
  417.         As mentioned at the beginning, Linux is not centrally 
  418.         administered. Because of this, there is no ``official'' release 
  419.         that one could point at, and say ``That's Linux.'' Instead, 
  420.         there are various ``distributions,'' which are more or less 
  421.         complete collections of software configured and packaged so that 
  422.         they can be used to install a Linux system. 
  423.  
  424.         The first thing you should do is to get and read the list of 
  425.         Frequently Asked Questions (FAQ) from one of the FTP sites, or 
  426.         by using the normal Usenet FAQ archives (e.g. rtfm.mit.edu). 
  427.         This document has plenty of instructions on what to do to get 
  428.         started, what files you need, and how to solve most of the 
  429.         common problems (during installation or otherwise). 
  430.  
  431.  
  432.         0.7 Legal Status of Linux 
  433.  
  434.  
  435.         Although Linux is supplied with the complete source code, it is 
  436.         copyrighted software, not public domain. However, it is 
  437.         available for free under the GNU Public License. See the GPL for 
  438.         more information. The programs that run under Linux each have 
  439.         their own copyright, although many of them use the GPL as well. 
  440.         X uses the MIT X copyright, and some utilities are under the BSD 
  441.         copyright. In any case, all of the software on the FTP site is 
  442.         freely distributable (or else it shouldn't be there). 
  443.  
  444.  
  445.         0.8 News About Linux 
  446.  
  447.  
  448.         A new magazine called Linux Journal was recently launched. It 
  449.         includes articles intended for almost all skill levels, and is 
  450.         intended to be helpful to all Linux users. Subscriptions are 19 
  451.         USD worldwide. Subscription inquiries can be sent via email to 
  452.         linux@fylz.com or faxed to (U.S.) 1-203-454-2582 or mailed to 
  453.         Linux Journal, P.O. Box 3364, Westport, CT 06880-8364 USA. 
  454.         Please do not send credit card numbers via email; the internet 
  455.         is not secure, and it is entirely possible that a 
  456.         technologically adept thief may steal your credit card number 
  457.         and cost you a large sum of money if you do. 
  458.  
  459.  
  460.  
  461.         There are several Usenet newsgroups for Linux discussion, and 
  462.         also several mailing lists. See the Linux FAQ for more 
  463.         information about the mailing lists (you should be able to find 
  464.         the FAQ either in the newsgroup or on the FTP sites). 
  465.  
  466.         The newsgroup comp.os.linux.announce is a moderated newsgroup 
  467.         for announcements about Linux (new programs, bug fixes, etc). 
  468.  
  469.         The newsgroup comp.os.linux.admin is an unmoderated newsgroup 
  470.         for discussion of administration of Linux systems. 
  471.  
  472.         The newsgroup comp.os.linux.development is an unmoderated 
  473.         newsgroup specifically for discussion of Linux kernel 
  474.         development. The only application development questions that 
  475.         should be discussed here are those that are intimately 
  476.         associated with the kernel. All other development questions are 
  477.         probably generic UNIX development questions and should be 
  478.         directed to a comp.unix group instead. 
  479.  
  480.         The newsgroup comp.os.linux.help is an unmoderated newsgroup for 
  481.         any Linux questions that don't belong anywhere else. 
  482.  
  483.         The newsgroup comp.os.linux.misc is the replacement for 
  484.         comp.os.linux, and is meant for any discussion that doesn't 
  485.         belong elsewhere. 
  486.  
  487.         In general, do not crosspost between the Linux newsgroups. The 
  488.         only crossposting that is appropriate is an occasional posting 
  489.         between one unmoderated group and comp.os.linux.announce. The 
  490.         whole point of splitting comp.os.linux into many groups is to 
  491.         reduce traffic in each. Those that do not follow this rule will 
  492.         be flamed without mercy... 
  493.  
  494.         For the current status of the Linux kernel and a summary of the 
  495.         most recent versions, finger torvalds@kruuna.helsinki.fi 
  496.  
  497.  
  498.         0.9 The Future 
  499.  
  500.  
  501.         Now that Linux 1.0 has been released, work is already in 
  502.         progress on several enhancements. Disk access speedups, TTY 
  503.         improvements, and many more things are being worked on. Linux 
  504.         1.0 is not the end of Linux, or is it even very important; it is 
  505.         mostly intended to provide a stable version that people can use 
  506.         without being afraid that they are using beta software, and that 
  507.         can be standardized on to some extent. 
  508.  
  509.         There is plenty of code left to write, and even more 
  510.         documentation. Please join the DOC channel of the mailing list 
  511.         if you would like to contribute to the documentation. 
  512.  
  513.  
  514.         0.10 This document 
  515.  
  516.  
  517.         This document is maintained by Michael K. Johnson, 
  518.         johnsonm@Sunsite.unc.edu. Please mail me with any comments, no 
  519.         matter how small. I can't do a good job of maintaining this 
  520.         document without your help. A more-or-less current copy of this 
  521.         document can always be found as 
  522.         tsx-11.mit.edu:/pub/linux/docs/INFO-SHEET, and a DVI version can 
  523.         be found as INFO-SHEET.dvi, in the same directory. 
  524.  
  525.  
  526.         0.11 Legalese 
  527.  
  528.  
  529.         Trademarks are owned by their owners. There is no warranty about 
  530.         the information in this document. Use and distribute at your own 
  531.         risk. The content of this document is in the public domain, but 
  532.         please be polite and attribute any quotes. 
  533.  
  534.