home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / FREQ_QA / LINUX194.ZIP / LINUX.INF < prev   
Internet Message Format  |  1994-01-09  |  24KB

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