home *** CD-ROM | disk | FTP | other *** search
/ Freelog Special Edition 1: Linux / CD1.iso / doc / HOWTO / Printing-Usage-HOWTO < prev    next >
Text File  |  1998-10-14  |  21KB  |  727 lines

  1.   The Linux Printing Usage HOWTO
  2.   by Mark Komarinski <markk@auratek.com>
  3.   v1.2.2, 6 February 1998
  4.  
  5.   1.  Introduction
  6.  
  7.   This document describes how to use the line printer spooling system
  8.   provided with the Linux operating system.  This HOWTO is the
  9.   supplementary document to the Linux Printing Setup HOWTO, which
  10.   discusses the installation and setup of the Linux printing system.
  11.   The material presented in this HOWTO should be equally relevent for
  12.   all flavors of the BSD operating system in addition to the Linux
  13.   operating system.
  14.  
  15.  
  16.   1.1.  Linux Printing HOWTO History
  17.  
  18.   Note from Mark Komarinski <markk@auratek.com>:
  19.  
  20.   I'd like to thank Matt Foster for doing a lot of work in the re-write
  21.   of this HOWTO.  I'm keeping his style, and adding when necessary to
  22.   keep everything updated.
  23.  
  24.   Note from Matt Foster <mwf@engr.uark.edu>:
  25.  
  26.   This version of the Linux Printing HOWTO is a complete rewrite of the
  27.   one originally written by Grant Taylor <grant@god.tufts.edu> and Brian
  28.   McCauley <B.A.McCauley@bham.ac.uk>.  I have tried to keep with the
  29.   coverage of material presented by Grant and Brian's HOWTO, but I have
  30.   drastically modified the style of presentation and the depth of
  31.   material covered.  I feel that this makes the HOWTO more complete and
  32.   easier to read.  I can only hope that you agree.
  33.  
  34.  
  35.   1.2.  Version History
  36.  
  37.   v1.2.2
  38.  
  39.   o  Re-indexed, other changes to fit in the new RedHat docs.  Thanks
  40.      Ed!
  41.  
  42.      v1.2.1
  43.  
  44.   o  updates, some changes for Dr. Linux publication
  45.  
  46.      v1.2
  47.  
  48.   o  Windows Printers
  49.  
  50.   o  Changing max size of print files
  51.  
  52.      v1.11
  53.  
  54.   o  new maintainter!
  55.  
  56.   o  Added lpc info
  57.  
  58.   o  Added some info for troubleshooting
  59.  
  60.   o  A start on printing graphics files!
  61.  
  62.   v1.1
  63.  
  64.   o  revised some of the wording
  65.  
  66.  
  67.   o  developed section on PostScript printing
  68.  
  69.   o  attempted to clarify some of the examples 8-)
  70.  
  71.   o  fleshed the discussion of the basic Linux printing utilities
  72.  
  73.   v1.0
  74.  
  75.   o  initial public release of the Printing Usage HOWTO
  76.  
  77.  
  78.   1.3.  Copyrights and Trademarks
  79.  
  80.   Some names mentioned in this HOWTO are claimed as copyrights and/or
  81.   trademarks of certain persons and/or companies.  These names appear in
  82.   full or initial caps in this HOWTO.
  83.  
  84.   (c) 1995 Matt Foster (mwf@engr.uark.edu)
  85.   (c) 1996-1997 Mark F. Komarinski (markk@auratek.com)
  86.  
  87.   All translations, derivative works, or aggregate works incorporating
  88.   any Linux HOWTO documents must be covered under this copyright notice.
  89.  
  90.   That is, you may not produce a derivative work from a HOWTO and impose
  91.   additional restrictions on its distribution. Exceptions to these rules
  92.   may be granted under certain conditions; please contact the Linux
  93.   HOWTO coordinator at the address given below.
  94.  
  95.   In short, we wish to promote dissemination of this information through
  96.   as many channels as possible. However, we do wish to retain copyright
  97.   on the HOWTO documents, and would like to be notified of any plans to
  98.   redistribute the HOWTOs.
  99.  
  100.  
  101.   If you have questions, please contact Tim Bynum, the Linux HOWTO
  102.   coordinator, at <linux-howto@sunsite.unc.edu>. You may finger this
  103.   address for phone number and additional contact information.
  104.  
  105.  
  106.  
  107.   1.4.  Downloading the Linux Printing HOWTOs
  108.  
  109.   I recommend that if you want to print a copy of this HOWTO that you
  110.   download the PostScript version.  It is formatted in a fashion that is
  111.   aesthetically appealing and easier to read.  You can get the
  112.   PostScript version from one of the many Linux distribution sites (such
  113.   as SunSITE <ftp://sunsite.unc.edu/pub/Linux/docs/HOWTO/>).
  114.  
  115.  
  116.   1.5.  Feedback
  117.  
  118.   Questions, comments, or corrections for this HOWTO may be directed to
  119.   <markk@auratek.com>.
  120.  
  121.  
  122.   1.6.  Acknowledgments
  123.  
  124.   Thanks go out to all of the people who took the time to read the alpha
  125.   version of this HOWTO and respond with many helpful comments and
  126.   suggestions---some of you may see your comments reflected in the
  127.   version.
  128.  
  129.   I'd also like to thank Matt Foster who did the original re-write.
  130.  
  131.  
  132.  
  133.   2.  Printing Under Linux
  134.  
  135.   This section discusses how to print files, examine the print queue,
  136.   remove jobs from the print queue, format files before printing them,
  137.   and configure your printing environment.
  138.  
  139.  
  140.   2.1.  History of Linux Printing
  141.  
  142.   The Linux printing system---the lp system---is a port of the source
  143.   code written by the Regents of the University of California for the
  144.   Berkeley Software Distribution version of the UNIX operating system.
  145.  
  146.  
  147.   2.2.  Printing a File Using lpr
  148.  
  149.   By far, the most simplistic way to print in the Linux operating system
  150.   is to send the file to be printed directly to the printing device.
  151.   One way to do this is to use the cat command.  As the root user, one
  152.   could do something like
  153.  
  154.  
  155.  
  156.        # cat thesis.txt > /dev/lp
  157.  
  158.  
  159.  
  160.  
  161.   In this case, /dev/lp is a symbolic link to the actual printing
  162.   device---be it a dot-matrix, laser printer, typesetter, or plotter.
  163.   (See ln(1) for more information on symbolic links.)
  164.  
  165.   For the purpose of security, only the root user and users in the same
  166.   group as the print daemon are able to write directly to the printer.
  167.   This is why commands such as lpr, lprm, and lpq have to be used to
  168.   access the printer.
  169.  
  170.   Because of this, users have to use lpr to print a file.  The lpr
  171.   command takes care of all the initial work needed to print the file,
  172.   and then it hands control over to another program, lpd, the line
  173.   printing daemon.  The line printing daemon then tells the printer how
  174.   to print the file.
  175.  
  176.   When lpr is executed, it first copies the specified file to a certain
  177.   directory (the spool directory) where the file remains until lpd
  178.   prints it.  Once lpd is told that there is a file to print, it will
  179.   spawn a copy of itself (what we programmers call forking).  This copy
  180.   will print our file while the original copy waits for more requests.
  181.   This allows for multiple jobs to be queued at once.
  182.  
  183.   The syntax of lpr(1) is a very familiar one,
  184.  
  185.  
  186.  
  187.        $ lpr [ options ] [ filename ... ]
  188.  
  189.  
  190.  
  191.  
  192.   If filename is not specified, lpr expects input to come from standard
  193.   input (usually the keyboard, or another program's output).  This
  194.   enables the user to redirect a command's output to the print spooler.
  195.   As such,
  196.  
  197.  
  198.  
  199.   $ cat thesis.txt | lpr
  200.  
  201.  
  202.  
  203.  
  204.   or,
  205.  
  206.  
  207.  
  208.        $ pr -l60 thesis.txt | lpr
  209.  
  210.  
  211.  
  212.  
  213.   The lpr command accepts several command-line arguments that allow a
  214.   user to control how it works.  Some of the most widely used arguments
  215.   are: -Pprinter specifies the printer to use, -h suppresses printing of
  216.   the burst page, -s creates a symbolic link instead of copying the file
  217.   to the spool directory (useful for large files), and -#num specifies
  218.   the number of copies to print.  An example interaction with lpr might
  219.   be something like
  220.  
  221.  
  222.  
  223.        $ lpr -#2 -sP dj thesis.txt
  224.  
  225.  
  226.  
  227.  
  228.   This command will create a symbolic link to the file thesis.txt in the
  229.   spool directory for the printer named dj, where it would be processed
  230.   by lpd.  It would then print a second copy of thesis.txt.
  231.  
  232.   For a listing of all the options that lpr will recognize, see lpr(1).
  233.  
  234.  
  235.   2.3.  Viewing the Print Queue with lpq
  236.  
  237.   To view the contents of the print queue, use the lpq command.  Issued
  238.   without arguments, it returns the contents of the default printer's
  239.   queue.
  240.  
  241.   The returned output of lpq can be useful for many purposes.
  242.  
  243.  
  244.  
  245.        $ lpq
  246.        lp is ready and printing
  247.        Rank   Owner      Job  Files                            Total Size
  248.        active mwf        31   thesis.txt                       682048 bytes
  249.  
  250.  
  251.  
  252.  
  253.  
  254.   2.4.  Canceling a Print Job Using lprm
  255.  
  256.   Another useful feature of any printing system is the ability to cancel
  257.   a job that has been previously queued.  To do this, use lprm.
  258.  
  259.  
  260.  
  261.        $ lprm -
  262.  
  263.  
  264.  
  265.   The above command cancels all of the print jobs that are owned by the
  266.   user who issued the command.  A single print job can be canceled by
  267.   first getting the job number as reported by lpq and then giving that
  268.   number to lprm.  For example,
  269.  
  270.  
  271.  
  272.        $ lprm 31
  273.  
  274.  
  275.  
  276.  
  277.   would cancel job 31 (thesis.txt) on the default printer.
  278.  
  279.  
  280.   2.5.  Controlling the lpd program with lpc
  281.  
  282.   The lpc(8) program is used to control the printers that lpd serves.
  283.   you can enable or disable a printer or its queues, rearrange entries
  284.   within a queue, and get a status report on the printers and their
  285.   queues.  Lpc is mostly used in a setup where there are multiple
  286.   printers hanging off one machine.
  287.  
  288.  
  289.  
  290.        $ lpc
  291.  
  292.  
  293.  
  294.  
  295.   The above will start the lpc program.  By default, this enters you
  296.   into an interactive mode, and you can begin issuing commands.  The
  297.   other option is to issue an lpc command on the command line.
  298.  
  299.  
  300.  
  301.        $ lpc status all
  302.  
  303.  
  304.  
  305.  
  306.   A list of the available commands are in the lpd man page, but here are
  307.   a few of the major commands you'll want to know about.  Any commands
  308.   marked with option can either be a printer name (lp, print, etc) or
  309.   the keyword all, which means all printers.
  310.  
  311.  
  312.   o  disable option -  prevents any new printer job from being entered
  313.  
  314.   o  down option - disables all printing on the printer
  315.  
  316.   o  enable option - allow new jobs to enter the print queue
  317.  
  318.   o  quit (or exit) - leave lpc
  319.  
  320.   o  restart option - restarts lpd for that printer
  321.  
  322.   o  status option - print status of printer
  323.  
  324.   o  up option - enable everything and start a new lpd
  325.  
  326.  
  327.   2.6.  The RedHat printtool
  328.  
  329.   Just a quick note here on RedHat's amazing printtool program.  It
  330.   seems to do everything that a magicfilter would do.  RedHat already
  331.   installs many of the programs to do the filtering.  Here's how I have
  332.   my printer set up under RH 4.0 with an HP LJ 4L connected to my
  333.   parallel port (should be the same for other versions of RH as well).
  334.  
  335.   o  Become root and fire up printtool (if you su'ed, you remembered to
  336.      SETENV DISPLAY :0.0 and xhost +, right?)
  337.  
  338.   o  Click "Add", and hit "OK" for a local printer.
  339.  
  340.   o  Fill in the printer device (/dev/lp1 for me)
  341.  
  342.   o  Fill in the input filter - Select a printer type, resolution, and
  343.      paper size (ljet4, 300x300, and letter)
  344.  
  345.   o  Hit "OK" all the way back, and restart the lpd.
  346.  
  347.      Just like rolling an /etc/printcap file by hand, you can have
  348.      multiple printer definitions for each physical printer.  One for
  349.      different paper sizes, resolutions, etc.
  350.  
  351.  
  352.   3.  Printing files
  353.  
  354.   This section covers printing the kinda of files that you'll run across
  355.   in a Linux setup.
  356.  
  357.  
  358.   3.1.  Printing graphics files
  359.  
  360.   Printing graphics files through a printer usually depends on the kind
  361.   of graphics you're converting, and the kind of printer you want to
  362.   send to. Dot matrix is usually out of the question due to differences
  363.   in the way dot-matrix handles graphics.  Your best bet in this
  364.   situation is to see if your printer is compatable with an Epson or an
  365.   IBM ProPrinter, then convert the graphics file to PostScript, then use
  366.   Ghostscript (see next section) to print the graphics.
  367.  
  368.   If you have a laser printer, things are a bit easier since many are
  369.   compatable with PCL.  This now gives you a few options.  Some programs
  370.   may output directly in PCL.  If not, programs like NetPBM can convert
  371.   into PCL.  Last option is to use ghostscript (see next section).
  372.  
  373.   Your absolutely best option is to install packages like NetPBM and
  374.   Ghostscript then installing a magic filter to process the graphics
  375.   files automagically.
  376.  
  377.  
  378.   3.2.  Printing PostScript files
  379.  
  380.   Printing PostScript files on a printer that has a PostScript
  381.   interpreter is simple; just use lpr, and the printer will take care of
  382.   all of the details for you.  For those of us that don't have printers
  383.   with PostScript capabilities, we have to resort to other means.
  384.   Luckily, there are programs available that can make sense of
  385.   PostScript, and translate it into a language that most printers will
  386.   understand.  Probably the most well known of these programs is
  387.   Ghostscript.
  388.  
  389.   Ghostscript's responsibility is to convert all of the descriptions in
  390.   a PostScript file to commands that the printer will understand.  To
  391.   print a PostScript file using Ghostscript, you might do something like
  392.  
  393.  
  394.  
  395.        $ gs -dSAFER -dNOPAUSE -sDEVICE=deskjet -sOutputFile=\|lpr thesis.ps
  396.  
  397.   Notice in the above example that we are actually piping the output of
  398.   Ghostscript to the lpr command by using the -sOutputFile option.
  399.  
  400.   Ghostview is an interface to Ghostscript for the X Window System.  It
  401.   allows you to preview a PostScript file before you print it.
  402.   Ghostview and Ghostscript can both be swiped from
  403.   <ftp://prep.ai.mit.edu/pub/gnu/>.
  404.  
  405.  
  406.   3.3.  Printing PDF files
  407.  
  408.   Adobe has released an Acrobat reader for Linux, and it's available on
  409.   the Adobe home page  <http://www.adobe.com>.  Its predecessor, xpdf,
  410.   is also available.  Both should print to a postscript device.
  411.  
  412.  
  413.   3.4.  Printing TeX files
  414.  
  415.   One of the easiest ways to print TeX files is to convert them to
  416.   PostScript and then print them using Ghostscript.  To do this, you
  417.   first need to convert them from TeX to a format known as DVI (which
  418.   stands for device-independent). You can do this with the tex(1)
  419.   command.  Then you need to convert the DVI file to a PostScript file
  420.   using dvips.  All of this would look like the following when typed in.
  421.  
  422.  
  423.  
  424.        $ tex thesis.tex
  425.        $ dvips thesis.dvi
  426.  
  427.  
  428.  
  429.  
  430.   Now you are ready to print the resulting PostScript file as described
  431.   above.
  432.  
  433.  
  434.   3.5.  Printing troff  formatted files
  435.  
  436.  
  437.  
  438.  
  439.        $ groff -Tascii thesis.tr | lpr
  440.  
  441.  
  442.  
  443.  
  444.   or, if you prefer,
  445.  
  446.  
  447.  
  448.        $ groff thesis.tr > thesis.ps
  449.  
  450.  
  451.  
  452.  
  453.   and then print the PostScript file as described above.
  454.  
  455.  
  456.   3.6.  Printing man  pages
  457.  
  458.  
  459.  
  460.  
  461.        $ man man | col -b | lpr
  462.  
  463.   The man pages contain pre-formatted troff data, so we have to strip
  464.   out any highlighting, underlines, etc.  The 'col' program does this
  465.   just nicely, and since we're piping data, the man program won`t use
  466.   more.
  467.  
  468.   4.  Miscellaneous Items
  469.  
  470.   This covers topics not in any of the others.
  471.  
  472.  
  473.   4.1.  Formatting Before Printing
  474.  
  475.   Since most ASCII files are not formatted for printing, it is useful to
  476.   format them in some way before they are actually printed.  This may
  477.   include putting a title and page number on each page, setting the
  478.   margins, double spacing, indenting, or printing a file in multiple
  479.   columns.  A common way to do this is to use a print preprocessor such
  480.   as pr.
  481.  
  482.  
  483.  
  484.        $ pr +4 -d -h"Ph.D. Thesis, 2nd Draft" -l60 thesis.txt | lpr
  485.  
  486.  
  487.  
  488.  
  489.   In the above example, pr would take the file thesis.txt and skip the
  490.   first three pages (+4), set the page length to sixty lines (-l60),
  491.   double space the output (-d), and add the phrase "Ph.D. Thesis, 2nd
  492.   Draft" to the top of each page (-h).  Lpr would then queue pr's
  493.   output.  See its on-line manual page for more information on using pr.
  494.  
  495.  
  496.   4.2.  The PRINTER Environment Variables
  497.  
  498.   All of the commands in the Linux printing system accept the -P option.
  499.   This option allows the user to specify which printer to use for
  500.   output.  If a user doesn't specify which printer to use, then the
  501.   default printer will be assumed as the output device.
  502.  
  503.   Instead of having to specify a printer to use every time that you
  504.   print, you can set the PRINTER environment variable to the name of the
  505.   printer that you want to use.  This is accomplished in different ways
  506.   for each shell.  For bash you can do this with
  507.  
  508.  
  509.  
  510.        $ PRINTER="printer_name"; export PRINTER
  511.  
  512.  
  513.  
  514.  
  515.   and csh, you can do it with
  516.  
  517.  
  518.  
  519.        % setenv PRINTER "printer_name"
  520.  
  521.  
  522.  
  523.  
  524.   These commands can be placed in your login scripts (.profile for bash,
  525.   or .cshrc for csh), or issued on the command-line.  (See bash(1) and
  526.   csh(1) for more information on environment variables.)
  527.  
  528.  
  529.   5.  Answers to Frequently Asked Questions
  530.  
  531.  
  532.   Q1.  How do I prevent the staircase effect?
  533.  
  534.   A1.  The staircase effect is caused by the way some printers expect
  535.   lines to be terminated.  Some printers want lines that end with a
  536.   carriage-return/line-feed sequence (DOS-style) instead of the line-
  537.   feed sequence used for UNIX-type systems.  The easiest way to fix this
  538.   is to see if your printer can switch between the two styles
  539.   somehow---either by flipping a DIP switch, or by sending an escape
  540.   sequence at the start of each print job.  To do the latter, you need
  541.   to create a filter (see Q2).
  542.  
  543.   A quick fix is to use a filter on the command-line.  An example of
  544.   this might be
  545.  
  546.  
  547.  
  548.        $ cat thesis.txt | todos | lpr
  549.  
  550.  
  551.  
  552.  
  553.  
  554.   Q2.  What is a filter?
  555.  
  556.   A2.  A filter is a program that reads from standard input (stdin),
  557.   performs some action on this input, and writes to standard output
  558.   (stdout).  Filters are used for a lot of things, including text
  559.   processing.
  560.  
  561.  
  562.   Q3.  What is a magic filter?
  563.  
  564.   A3.  A magic filter is a filter that performs an action based on a
  565.   file's type.  For example, if the file is a plain, text file, it would
  566.   simply print the file using the normal methods.  If the file is a
  567.   PostScript file, or any other format, it would print it using another
  568.   method (ghostscript).  Two examples of this is magicfilter and
  569.   APSfilter.  One caveat of these filters is that the appropriate
  570.   programs have to be installed before you install the filter.
  571.  
  572.   The reason for this is that when the magicfilter gets installed, it
  573.   queries your system for specific programs (such as ghostscript - if it
  574.   finds it, then it knows it can handle PostScript data), then builds
  575.   itself based on what it finds.  To handle all the printer files, you
  576.   should probably have at least the following installed:
  577.  
  578.   o  GhostScript
  579.  
  580.   o  TeX
  581.  
  582.   o  NetPBM
  583.  
  584.   o  jpeg utilities
  585.  
  586.   o  gzip
  587.  
  588.  
  589.   Q4.  What about the Windows Printing System?  Will Linux work with
  590.   that?
  591.  
  592.   A4.  Maybe.  Printers that accept only the WPS commands will not work
  593.   with Linux.  Printers that accept WPS and other commands (such as the
  594.   Canon BJC 610) will work, as long as they're set to something other
  595.   than WPS format.  Other printers, such as some HP DeskJet 820Cxi/Cse,
  596.   will *not* work with Linux.  That being said, Linux can act as a print
  597.   server (See Samba) for Win95 machines, since Win95 has drivers for
  598.   those printers.
  599.  
  600.  
  601.   Q5.  What kinda cheey system is this?  I can't print more than 6 pages
  602.   or else I get a "file too large" error.
  603.  
  604.   A5.  One of the options in the /etc/printcap file relates to the
  605.   maximum size of a print file.  The default is 1000 disk blocks (about
  606.   500k?).  For PostScript files and the like, this will give you maybe
  607.   6-8 pages with graphics and all.  Be sure to add the following line in
  608.   the printer definition:
  609.  
  610.  
  611.        mx=0
  612.  
  613.  
  614.  
  615.  
  616.   The primary reason for this is to keep the spool partition from get-
  617.   ting filled.  There is another way to do it, by making lpr create a
  618.   soft link from the spool directory to your print file.  But you have
  619.   to remember to add the -s option to lpr every time.
  620.  
  621.  
  622.   6.  Troubleshooting
  623.  
  624.   This section covers some common things that can go wrong with your
  625.   printing system.
  626.  
  627.   If your printer doesn't work:
  628.  
  629.   o  Do other print jobs work? (application problem?)
  630.  
  631.   o  Is lpd running? (check it using lpc) (print controller?)
  632.  
  633.   o  Can root send something directly to the printer? (print services?)
  634.  
  635.   o  Can you print from DOS? (cable/printer problem?)
  636.  
  637.      Answering these questions can help find a solution.
  638.  
  639.   Send other suggestions for this section to <markk@auratek.com>.
  640.  
  641.  
  642.   7.  References
  643.  
  644.   This is a section of references on the Linux printing system.  I have
  645.   tried to keep the references section of this HOWTO as focused as
  646.   possible.  If you feel that I have forgotten a significant reference
  647.   work, please do not hesitate to contact me.
  648.  
  649.   Before you post your question to a USENET group, consider the
  650.   following:
  651.  
  652.   o  Is the printer accepting jobs?  (Use lpc(8) to verify.)
  653.  
  654.   o  Is the answer to your question covered in this HOWTO or Grant
  655.      Taylor's Printing HOWTO?
  656.  
  657.   If any of the above are true, you may want to think twice before you
  658.   post your question.  And, when you do finally post to a newsgroup, try
  659.   to include pertinent information.  Try not to just say something like,
  660.   "I'm having trouble with lpr, please help." These types of posts will
  661.   most definitely be ignored by many.  Also try to include the kernel
  662.   version that you're running, how the error occured, and, if any, the
  663.   specific error message that the system returned.
  664.  
  665.  
  666.      On-Line Manual Pages
  667.  
  668.      o  cat(1)  concatenate and print files
  669.  
  670.      o  dvips(1)  convert a TeX DVI file to PostScript
  671.  
  672.      o  ghostview(1)  view PostScript documents using Ghostscript
  673.  
  674.      o  groff(1)  front-end for the groff document formatting system
  675.  
  676.      o  gs(1)  Ghostscript interpreter/viewer
  677.  
  678.      o  lpc(8)  line printer control program
  679.  
  680.      o  lpd(8)  line printer spooler daemon
  681.  
  682.      o  lpq(1)  spool queue examination program
  683.  
  684.      o  lpr(1)  off-line printer
  685.  
  686.      o  lprm(1)  remove jobs from the line printer spooling queue
  687.  
  688.      o  pr(1)  convert text files for printing
  689.  
  690.      o  tex(1)  text formatting and typesetting
  691.  
  692.  
  693.      USENET newsgroups
  694.  
  695.      o  comp.os.linux.*  a plethora of information on Linux
  696.  
  697.      o  comp.unix.*  discussions relating to the UNIX operating system
  698.  
  699.  
  700.  
  701.  
  702.  
  703.  
  704.  
  705.  
  706.  
  707.  
  708.  
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.