home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / os / linux / announce / 94 < prev    next >
Encoding:
Internet Message Format  |  1993-01-01  |  17.0 KB

  1. Xref: sparky comp.os.linux.announce:94 comp.os.linux:22418 news.answers:4863
  2. Newsgroups: comp.os.linux.announce,comp.os.linux,news.answers
  3. Path: sparky!uunet!caen!batcomputer!db.TC.Cornell.EDU!mdw
  4. From: mdw@db.TC.Cornell.EDU (Matt Welsh)
  5. Subject: Linux INFO-SHEET
  6. Message-ID: <1993Jan2.040102.20204@tc.cornell.edu>
  7. Keywords: linux info
  8. Sender: news@tc.cornell.edu
  9. Nntp-Posting-Host: db.tc.cornell.edu
  10. Organization: Cornell Theory Center
  11. Date: Sat, 2 Jan 1993 04:01:02 GMT
  12. Approved: linux-announce@tc.cornell.edu (Matt Welsh)
  13. Lines: 367
  14.  
  15. Archive-name: linux-faq/info-sheet
  16. Last-modified: 1992-12-10
  17.  
  18.  
  19. LINUX INFORMATION SHEET
  20. by Lars Wirzenius (lars.wirzenius@helsinki.fi) and
  21. Matt Welsh (mdw@tc.cornell.edu).
  22. Earlier versions done by other people.
  23.  
  24.  
  25. 0. About this INFO-SHEET
  26.  
  27.         This INFO-SHEET tries to be a concentrated distillation of the
  28.         necessary information one needs to decide whether Linux is a
  29.         suitable operating system for you.  It is kind of an
  30.         advertisment, although hopefully more truthful.
  31.  
  32.         This INFO-SHEET is posted every other week to the
  33.         comp.os.linux and comp.os.linux.announce newsgroups.
  34.  
  35. 1. What Is Linux?
  36.  
  37.         Linux is a freely distributable UNIX clone.  It is mostly
  38.         compatible with System V and POSIX specifications, but is
  39.         quite compatible with BSD as well.
  40.  
  41.         The Linux kernel has been written from scratch, and therefore
  42.         does not contain any proprietary code, either from AT&T,
  43.         MINIX, or other places--not in the kernel, the compiler, the
  44.         utilities, or the libraries.  For this reason it can be made
  45.         available with the complete source code via anonymous FTP.
  46.         (The software that runs under Linux, on the other hand, is
  47.         mostly already existing Unix freeware, with a lot of stuff
  48.         coming from the GNU Project.)
  49.  
  50.         Linux runs only on 386/486 machines with an ISA or EISA bus;
  51.         porting to other architectures is likely to be difficult, as
  52.         the kernel makes extensive use of 386 memory management and
  53.         task primitives (but there are people working on at least an
  54.         Amiga port).  MCA is not supported because there is little
  55.         available documentation (especially for poor-hacker -friendly
  56.         prices) about it.  (See below for more information on
  57.         hardware.)
  58.  
  59.         Linux is still in beta testing and therefore not really
  60.         considered to be suitable for production work (although it is
  61.         used for that anyway).  There are still bugs in the system,
  62.         and since it develops rapidly, new bugs creep up often.
  63.         However, some releases are quite stable, and you can stay with
  64.         those if you don't want to be on the bleeding edge.  Some
  65.         sites have been running Linux systems continuously doing real
  66.         work for more than 50 days, without a single reboot, crash, or
  67.         other lock-up!
  68.  
  69.         One thing to be aware of is that Linux is developed using an
  70.         open and distributed model, instead of a closed and
  71.         centralised model like much other software.  This means that
  72.         the current development version is always public (with up to a
  73.         week or two's delay) so that anybody can use it.  The result
  74.         is that whenever a version with new functionality is released,
  75.         it almost always contains bugs, but it also results in a very
  76.         rapid development so that the bugs are found and corrected
  77.         quickly, sometimes in hours.
  78.  
  79.         (The closed and centralised model means that there is only one
  80.         person or team working on the project, and they only release
  81.         software that they think is working well.  Often this leads to
  82.         long intervals between releases, long waiting for bug fixes, and
  83.         slower development.  Of course, the latest release of such
  84.         software is often of higher quality.)
  85.  
  86.         As of December 10 the current version is 0.98 patchlevel 6.
  87.  
  88. 2. Linux Features
  89.  
  90.       * multitasking: several programs running at once
  91.       * multiuser: several users on the same machine at once (and NO
  92.         two-user licenses!)
  93.       * memory protection between processes, so that one program can't
  94.         bring the whole system down
  95.       * core dumps for post-mortem analysis (using a debugger on a
  96.         program after it has crashed)
  97.       * demand loading of executables: only read in those parts of a
  98.         program that are actually used
  99.       * virtual memory using paging (not swapping whole processes) to
  100.         disk, to a separate partition or a file in the filesystem, or
  101.         both, and with a possibility to add more swapping areas at
  102.         runtime (they're still called swapping areas)
  103.       * shared pages among executables with copy-on-write
  104.       * shared libraries (static too, of course)
  105.       * a unified memory pool for user programs and disk cache (so
  106.         that all free memory can be used for caching, and the cache
  107.         can be reduced when running large programs)
  108.       * mostly compatible with POSIX, System V, and BSD at the source
  109.         level
  110.       * all source code is available, including the whole kernel and
  111.         all drivers, the development tools and all user programs;
  112.         also, all of it is freely distributable
  113.       * POSIX job control
  114.       * pseudoterminals (pty's)
  115.       * 387-emulation in the kernel so that programs don't need to
  116.         include math emulation packages
  117.       * support for many national or customized keyboards, and it's
  118.         fairly easy to add new ones
  119.       * runs in protected mode of the 386
  120.       * multiple virtual consoles: several independent login sessions
  121.         through the console, you switch by pressing a hot-key
  122.         combination (not dependent on video hardware)
  123.       * normal and extended Minix filesystems (the extended version
  124.         supports up to 4 TB, filenames up to 255 chars)
  125.       * transparent access to MS-DOS partitions (or OS/2 FAT
  126.         partitions) via a special filesystem: you don't need any
  127.         special commands to use the MS-DOS partition, it looks just
  128.         like a normal Unix filesystem (except for funny restrictions
  129.         on filenames, permissions, and so on)
  130.       * CD-ROM filesystem
  131.       * Xenix filesystem
  132.     
  133. In addition the following are being worked on (in various states of
  134. usability):
  135.  
  136.       * networking (TCP/IP, including ftp, telnet, etc)
  137.       * compressed file system
  138.       * Xenix binary compatibility
  139.  
  140. 3. Hardware Issues
  141.  
  142.     Minimal configuration
  143.  
  144.         The following is probably the smallest possible configuration
  145.         that Linux will work on: 386SX/16, 2 MB RAM, 1.44 MB or 1.2 MB
  146.         floppy, any supported video card (+ keyboards, monitors, and
  147.         so on of course).  This should allow you to boot and test
  148.         whether it works at all on the machine, but you won't be able
  149.         to do anything useful.
  150.  
  151.         In order to do something, you will want some hard disk space
  152.         as well, 5 to 10 MB should suffice for a very minimal setup
  153.         (with only the most important commands and perhaps one or two
  154.         small applications installed, like, say, a terminal program).
  155.         This is still very, very limited, and very uncomfortable, as
  156.         it doesn't leave enough room to do just about anything.  (It's
  157.         definitely not recommended for anything but testing if things
  158.         work, and of course to be able to brag about small resource
  159.         requirements. :-)
  160.  
  161.     Usable configuration
  162.  
  163.         If you are going to run computationally intensive programs,
  164.         such as gcc, X, and TeX, you will probably want a faster
  165.         processor than a 386SX/16, but even that should suffice if you
  166.         are patient.
  167.  
  168.     In practice, you need at least 4 MB of RAM if you don't use X,
  169.         and 8 MB if you do.  Also, if you want to have several users
  170.         at a time, or run several large programs (compilations for
  171.         example) at a time, you may want more than 4 MB of memory.  It
  172.         will still work with a smaller amount of memory (should work
  173.         even with 2 MB), but it will use virtual memory and that will
  174.         be so slow it's unusable.
  175.  
  176.         The amount of hard disk you need depends on what software you
  177.         want to install.  The normal basic set of Unix utilities,
  178.         shells, and administrative programs should be comfortable in
  179.         less than 10 MB, with a bit of room to spare for user files.
  180.         For a more complete system, the SLS documentation reports that
  181.         a full base system without X fits into 20 MB, and with X into
  182.         40 MB (this is only binaries).  Add the whatever space you
  183.         want to reserve for user files.
  184.  
  185.         Add more memory, more hard disk, a faster processor and other
  186.         stuff depending on your needs, wishes and budget to go beyond
  187.         the merely usable.
  188.  
  189.     Supported hardware
  190.  
  191.         Note: This section is still sketchy.  Feedback appreciated.
  192.  
  193.     CPU: Anything that runs 386 protected mode programs (all
  194.         models of 386s and 486s should work; 286s don't work, and
  195.         never will).
  196.  
  197.         Architecture: ISA or EISA bus (you still need an ISA-bus hard
  198.         disk controller, though).  MCA (aka PS/2) does not work.
  199.         Local bus should work.
  200.  
  201.         RAM: Theoretically up to 1 GB (but more than 16 MB requires a
  202.         kernel recompilation).  (It will work with "too much" memory,
  203.         but it won't use it.)
  204.  
  205.         Data storage: Generic AT drives (IDE, 16 bit HD controllers
  206.         with MFM or RLL), generic XT controllers (8 bit controllers
  207.         with MFM or RLL) need a special driver (not currently part of
  208.         the standard kernel), SCSI hard disks and CD-ROM.  Supported
  209.         SCSI cards: Adaptec 1542 (but not 1522), the 1740 in extended
  210.         (not 1542 compatible) mode, Seagate ST-01 and ST-02, Future
  211.         Domain TMC-88x series (or any board based on the TMC950 chip)
  212.         and TMC1660/1680, Ultrastor 14F, and Western Digital wd7000.
  213.         SCSI and QIC-02 tapes.
  214.  
  215.         Video: VGA, EGA, CGA, or Hercules (and compatibles) work in
  216.         text mode.  For graphics and X, there is support for (at
  217.         least) EGA, normal VGA, some super-VGA cards (most of the
  218.         cards based on ET3000, ET4000, Paradise, and some Trident
  219.         chipsets), some S3 cards (not Diamond Stealth, because the
  220.         manufacturer won't tell how to program it) and 8514/A.  (Linux
  221.         uses the Xfree86 X server, so that determines what cards are
  222.         supported.)
  223.  
  224.         Other hardware: SoundBlaster, AST Fourport cards (with 4 serial
  225.         boards), several flavours of bus mice (Microsoft, Logitech,
  226.         PS/2).
  227.  
  228. 4. An Incomplete List of Ported Programs and Other Software
  229.  
  230.         Most of the common Unix tools and programs have been ported to
  231.         Linux, including almost all of the GNU stuff and many X
  232.         clients from various sources.  Actually, ported is often too
  233.         strong a word, since many programs compile out of the box
  234.         without modifications, or only small modifications (maybe
  235.         being POSIXy and following standards isn't so bad :).
  236.         Unfortunately, there are not very many end-user applications.
  237.         Nevertheless, here is an incomplete list of software that is
  238.         known to work under Linux.
  239.  
  240.         Basic Unix commands: ls, tr, sed, awk and so on (you name it,
  241.         we've probably got it).
  242.  
  243.         Development tools: gcc, gdb, make, bison, flex, perl,
  244.         rcs, cvs, gprof.
  245.  
  246.         Graphical environments: X11R5 (Xfree86), MGR.
  247.  
  248.         Editors: GNU Emacs, MicroEmacs, elvis, joe.
  249.  
  250.         Shells: Bash, zsh, tcsh, rc.
  251.  
  252.     Telecommunication: UUCP, kermit, szrz, minicom, pcomm, xcomm,
  253.         term (runs multiple shells over one modem line).
  254.  
  255.     News and mail: C-news, trn, nn, tin, smail, elm.
  256.  
  257.         Textprocessing: TeX, groff.
  258.  
  259.         Games: Nethack, several Muds.
  260.  
  261. 5. Getting Linux
  262.  
  263.    Anonymous FTP
  264.  
  265.         At least the following anonymous ftp sites carry Linux.  This
  266.         list is taken from the Meta-FAQ list, which is posted every
  267.         week to the comp.os.linux newsgroup (the Meta-FAQ is updated
  268.         more often than this information sheet, so the list below may
  269.         not be the most current one).
  270.  
  271.    textual name                            numeric addr    Linux directory
  272.  
  273.    tsx-11.mit.edu                          18.172.1.2      /pub/linux
  274.    sunsite.unc.edu                         152.2.22.81     /pub/Linux
  275.    nic.funet.fi                            128.214.6.100   /pub/OS/Linux
  276.    ftp.mcc.ac.uk                           130.88.200.7    /pub/linux
  277.    fgb1.fgb.mw.tu-muenchen.de              129.187.200.1   /pub/linux
  278.    ftp.informatik.tu-muenchen.de           131.159.0.110   /pub/Linux
  279.    ftp.dfv.rwth-aachen.de                  137.226.4.105   /pub/linux
  280.    ftp.informatik.rwth-aachen.de           137.226.112.172 /pub/Linux
  281.    kirk.bu.oz.au                           131.244.1.1     /pub/OS/Linux
  282.    utsun.s.u-tokyo.ac.jp                   133.11.11.11    /misc/linux
  283.    ftp.uu.net                              137.39.1.9      /packages/linux
  284.    wuarchive.wustl.edu                     128.252.135.4   mirrors/linux
  285.    ftp.win.tue.nl                          131.155.70.100  /pub/linux
  286.  
  287.  
  288.     Other methods of obtaining Linux
  289.  
  290.         There are several BBS's that have Linux files.  A list of them
  291.         is maintained by Zane Healy; he posts it to the comp.os.linux
  292.         newsgroup around the beginning and middle of the month, please
  293.         see that post for more information.
  294.  
  295.         There is also at least one organization that distributes Linux
  296.         on floppies, for a fee.  Contact 
  297.  
  298.                 Softlanding Software
  299.                 910 Lodge Ave.
  300.                 Victoria, B.C., Canada
  301.                 V8X-3A8
  302.                 (608) 360-0188
  303.  
  304.         The price is US$3.25 per disk ($4.00 Canadian) in 5.25" format
  305.         (add $1/disk for 3.5").  Add GST (7%) and PST/SST as
  306.         applicable, plus $10.00 for S&H (outside North America, add
  307.         $10.00).  (Prices may change without notice.)  There are 13
  308.         disk in a base system, 21 if you want X.
  309.  
  310.         Also, don't forget about friends and user's groups, who are
  311.         usually glad to let you make a copy.
  312.  
  313.     Getting started
  314.  
  315.         As mentioned at the beginning, Linux is not centrally
  316.         administered.  Because of this, there is no "official" release
  317.         that one could point at, and say "That's Linux".  Instead,
  318.         there are various "distributions", which are more or less
  319.         complete collections of software configured and packaged so
  320.         that they can be used to install a Linux system.  The two most
  321.         important ones are the SLS and MCC releases.
  322.  
  323.         SLS is put together by Peter MacDonald, and is the more
  324.         full-featured one.  It contains most of the available
  325.         software, and includes X.  MCC is maintained by Owen LeBlanc
  326.         at the Manchester Computing Centre, and has a longer history
  327.         than SLS, but it doesn't contain X, and some other goodies.
  328.         Either one serves as a starter's package.
  329.  
  330.         The first thing you should do is to get and read the list of
  331.         Frequently Asked Questions (FAQ) from one of the FTP sites, or
  332.         by using the normal Usenet FAQ archives (e.g.
  333.         pit-manager.mit.edu).  This document has plenty of
  334.         instructions on what to do to get started, what files you
  335.         need, and how to solve most of the common problems (during
  336.         installation or otherwise).
  337.  
  338. 6. Legal Status of Linux
  339.  
  340.         Although Linux is supplied with the complete source code, it
  341.         is copyrighted software, not public domain.  However, it is
  342.         available for free under the GNU Public License.  See the GPL
  343.         for more information.  The programs that run under Linux have
  344.         each their own copyright, although much of it uses the GPL as
  345.         well.  All of the software on the FTP site is freely
  346.         distributable (or else it shouldn't be there).
  347.  
  348. 7. News About Linux
  349.  
  350.         There is a Usenet newsgroup, comp.os.linux, for Linux
  351.         discussion, and also several mailing lists.  See the Linux FAQ
  352.         for more information about the mailing lists (you should be able
  353.         to find the FAQ either in the newsgroup or on the FTP sites).
  354.  
  355.         The newsgroup comp.os.linux.announce is a moderated newsgroup
  356.         for announcements about Linux (new programs, bug fixes, etc).
  357.  
  358.         For the current status of the Linux kernel, finger
  359.         torvalds@kruuna.helsinki.fi.
  360.  
  361.         There is also a more or less weekly "newsletter", Linux News,
  362.         which summarizes the most important announcements and uploads,
  363.         and has occasional other articles as well.  Look in
  364.         comp.os.linux for a sample issue.
  365.  
  366. 8. Future Plans
  367.  
  368.         Work is underway on Linux version 1.0, which will close some
  369.         of the gaps in the present implementation.  The major
  370.         functionality shortcomings are advanced interprocess
  371.         communication (semaphores, shared memory), closer
  372.         compatibility with POSIX, and a lot of tweaking.
  373.         Documentation is also sorely missing.
  374.  
  375. 9. Legalese
  376.  
  377.         Trademarks are owned by their owners.  There is no warranty
  378.         about the information in this document.
  379.  
  380. -- 
  381. Send submissions for comp.os.linux.announce to: linux-announce@tc.cornell.edu
  382.