Changeset 536fac5


Ignore:
Timestamp:
05/16/2005 10:03:13 AM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
2ed14a4
Parents:
c5428f72
Message:

Tagged cups.xml

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@4285 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pst/printing/cups.xml

    rc5428f72 r536fac5  
    1313
    1414<sect1 id="cups" xreflabel="CUPS-&cups-version;">
    15 <sect1info>
    16 <othername>$LastChangedBy$</othername>
    17 <date>$Date$</date>
    18 </sect1info>
    19 <?dbhtml filename="cups.html"?>
    20 <title>CUPS-&cups-version;</title>
    21 <indexterm zone="cups">
    22 <primary sortas="a-CUPS">CUPS</primary></indexterm>
    23 
    24 <sect2>
    25 <title>Introduction to
    26 <application><acronym>CUPS</acronym></application></title>
    27 
    28 <para>The Common Unix Printing System (<acronym>CUPS</acronym>) is a print
    29 spooler and associated utilities. It is based on the "Internet Printing
    30 Protocol" and provides printing services to most PostScript and raster
    31 printers.</para>
    32 
    33 <sect3><title>Package information</title>
    34 <itemizedlist spacing='compact'>
    35 <listitem><para>Download (HTTP):
    36 <ulink url="&cups-download-http;"/></para></listitem>
    37 <listitem><para>Download (FTP):
    38 <ulink url="&cups-download-ftp;"/></para></listitem>
    39 <listitem><para>Download MD5 sum: &cups-md5sum;</para></listitem>
    40 <listitem><para>Download size: &cups-size;</para></listitem>
    41 <listitem><para>Estimated disk space required:
    42 &cups-buildsize;</para></listitem>
    43 <listitem><para>Estimated build time:
    44 &cups-time;</para></listitem></itemizedlist>
    45 </sect3>
    46 
    47 <sect3><title><application><acronym>CUPS</acronym></application>
    48 dependencies</title>
    49 <sect4><title>Recommended</title>
    50 <para><xref linkend="libjpeg"/>,
    51 <xref linkend="libpng"/>,
    52 and <xref linkend="libtiff"/></para>
    53 </sect4>
    54 
    55 <sect4><title>Optional</title>
    56 <para><xref linkend="openssl"/> or
    57 <ulink url="http://www.gnu.org/software/gnutls/">GnuTLS</ulink> (which needs
    58 <ulink url="ftp://ftp.gnupg.org/gcrypt/alpha/libgpg-error/">
    59 libgpg-error</ulink>,
    60 <ulink url="ftp://ftp.gnupg.org/gcrypt/libgcrypt/">libgcrypt</ulink> and
    61 <ulink url="ftp://ftp.gnupg.org/gcrypt/alpha/gnutls/opencdk/">opencdk</ulink>,
    62 in that order),
    63 <xref linkend="Linux_PAM"/>,
    64 <xref linkend="php"/>,
    65 <xref linkend="python"/>,
    66 <xref linkend="jdk"/>,
    67 <ulink url="http://www.openslp.org/">OpenSLP</ulink>,
    68 <ulink url="http://packages.debian.org/unstable/source/libpaper">
    69 libpaper</ulink> and
    70 <ulink url="http://valgrind.kde.org/">Valgrind</ulink> (optionally used if
    71 running the test suites)</para>
    72 </sect4>
    73 </sect3>
    74 
    75 </sect2>
    76 
    77 <sect2>
    78 <title>Installation of
    79 <application><acronym>CUPS</acronym></application></title>
    80 
    81 <para>Create an 'lp' user, as
    82 <application><acronym>CUPS</acronym></application> will install the
    83 <command>lppasswd</command> command <acronym>SUID</acronym> to this user. Use
    84 the following command as the root user:</para>
    85 
    86 <screen><userinput role='root'><command>useradd -c "Print Service User" -d /dev/null -g lp -s /bin/false lp</command></userinput></screen>
    87 
    88 <para>If you utilize <application>Linux-<acronym>PAM</acronym></application>,
    89 you need to modify some files so
    90 <application><acronym>CUPS</acronym></application> can find needed headers.
    91 Make the appropriate modifications using the following command:</para>
    92 
    93 <screen><userinput><command>sed -i -e "s@pam/pam@security/pam@g" \
    94 {config-scripts/cups-pam.m4,scheduler/auth.c,configure}</command></userinput></screen>
    95 
    96 <para>Install <application><acronym>CUPS</acronym></application> by
    97 running the following commands:</para>
    98 
    99 <screen><userinput><command>./configure &amp;&amp;
    100 make</command></userinput></screen>
    101 
    102 <para>Now, as the root user:</para>
    103 
    104 <screen><userinput role='root'><command>make install</command></userinput></screen>
    105 
    106 </sect2>
    107 
    108 <sect2>
    109 <title>Command explanations</title>
    110 
    111 <para>The basic default behavior of the installation is appropriate for
    112 <acronym>LFS</acronym> systems. <application><acronym>CUPS</acronym>
    113 </application> files are placed in
    114 <filename class="directory">/usr/bin</filename>,
    115 <filename class="directory">/usr/sbin</filename>,
    116 <filename class="directory">/var</filename> and
    117 <filename class="directory">/etc/cups</filename>.</para>
    118 
    119 </sect2>
    120 
    121 <sect2>
    122 <title>Configuring <application><acronym>CUPS</acronym></application></title>
    123 
    124 <para>Configuration of <application><acronym>CUPS</acronym></application> is
    125 dependent on the type of printer and can be complex. Generally, PostScript
    126 printers are easier. For detailed instructions on configuration and use of
    127 <application><acronym>CUPS</acronym></application>, see
    128 <ulink url="http://www.cups.org/documentation.php"/>. The Software
    129 Administrators Manual and Software Users Manual are particularly useful.</para>
    130 
    131 <para>For non-PostScript printers to print with
    132 <application><acronym>CUPS</acronym></application>, you need to install
    133 <xref linkend="espgs"/> to convert PostScript to raster images
    134 and a driver (e.g., from <xref linkend="gimp-print"/>) to convert
    135 the resulting raster images to a form that the printer understands.
    136 <ulink url="http://www.linuxprinting.org/foomatic.html">Foomatic</ulink>
    137 drivers use Ghostscript to convert PostScript to a printable form directly, but
    138 this is considered to be a hack by
    139 <application><acronym>CUPS</acronym></application> developers.</para>
    140 
    141 <para id="cups-init">During the install,
    142 <application><acronym>CUPS</acronym></application>
    143 created the startup file <command>/etc/rc.d/init.d/cups</command>. The file
    144 works, but you may want to change it to a more conventional
    145 <acronym>LFS</acronym> startup file by installing the script included in the
    146 <xref linkend="intro-important-bootscripts"/> package:</para>
    147 <indexterm zone="cups cups-init">
    148 <primary sortas="f-cups">cups</primary></indexterm>
    149 
    150 <screen><userinput><command>make install-cups</command></userinput></screen>
    151 
    152 </sect2>
    153 
    154 <sect2>
    155 <title>Contents</title>
    156 
    157 <segmentedlist>
    158 <segtitle>Installed Programs</segtitle>
    159 <segtitle>Installed Libraries</segtitle>
    160 <segtitle>Installed Directories</segtitle>
    161 
    162 <seglistitem>
    163 <seg>accept, cancel, cups-config, cupsaddsmb, cupsd, cupstestppd, disable,
    164 enable, lp, lpadmin, lpc, lpinfo, lpmove, lpoptions, lppasswd, lpq, lpr,
    165 lprm, lpstat and reject</seg>
    166 <seg>libcups.[so,a], libcupsimage.[so,a] and various filters and backend
    167 drivers</seg>
    168 <seg>/etc/cups, /usr/include/cups, /usr/lib/cups, /usr/share/doc/cups,
    169 /usr/share/cups, /var/log/cups and /var/spool/cups</seg>
    170 </seglistitem>
    171 </segmentedlist>
    172 
    173 <variablelist>
    174 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
    175 <?dbfo list-presentation="list"?>
    176 
    177 <varlistentry id="accept">
    178 <term><command>accept</command></term>
    179 <listitem><para>instructs the printing system to accept print jobs to the
    180 specified destinations.</para>
    181 <indexterm zone="cups accept">
    182 <primary sortas="b-accept">accept</primary>
    183 </indexterm></listitem>
    184 </varlistentry>
    185 
    186 <varlistentry id="cancel-cups">
    187 <term><command>cancel</command></term>
    188 <listitem><para>cancels existing print jobs from the print queues.</para>
    189 <indexterm zone="cups cancel-cups">
    190 <primary sortas="b-cancel">cancel</primary>
    191 </indexterm></listitem>
    192 </varlistentry>
    193 
    194 <varlistentry id="cups-config">
    195 <term><command>cups-config</command></term>
    196 <listitem><para>is a <application><acronym>CUPS</acronym></application>
    197 program configuration utility.</para>
    198 <indexterm zone="cups cups-config">
    199 <primary sortas="b-cups-config">cups-config</primary>
    200 </indexterm></listitem>
    201 </varlistentry>
    202 
    203 <varlistentry id="cupsaddsmb">
    204 <term><command>cupsaddsmb</command></term>
    205 <listitem><para>exports printers to the <application>Samba</application>
    206 software for use with Windows clients.</para>
    207 <indexterm zone="cups cupsaddsmb">
    208 <primary sortas="b-cupsaddsmb">cupsaddsmb</primary>
    209 </indexterm></listitem>
    210 </varlistentry>
    211 
    212 <varlistentry id="cupsd">
    213 <term><command>cupsd</command></term>
    214 <listitem><para>is the scheduler for the Common Unix Printing System.</para>
    215 <indexterm zone="cups cupsd">
    216 <primary sortas="b-cupsd">cupsd</primary>
    217 </indexterm></listitem>
    218 </varlistentry>
    219 
    220 <varlistentry id="cupstestppd">
    221 <term><command>cupstestppd</command></term>
    222 <listitem><para>tests the conformance of <filename>PPD</filename> files.</para>
    223 <indexterm zone="cups cupstestppd">
    224 <primary sortas="b-cupstestppd">cupstestppd</primary>
    225 </indexterm></listitem>
    226 </varlistentry>
    227 
    228 <varlistentry id="disable">
    229 <term><command>disable</command></term>
    230 <listitem><para>stops the named printers or classes.</para>
    231 <indexterm zone="cups disable">
    232 <primary sortas="b-disable">disable</primary>
    233 </indexterm></listitem>
    234 </varlistentry>
    235 
    236 <varlistentry id="enable">
    237 <term><command>enable</command></term>
    238 <listitem><para>starts the named printers or classes.</para>
    239 <indexterm zone="cups enable">
    240 <primary sortas="b-enable">enable</primary>
    241 </indexterm></listitem>
    242 </varlistentry>
    243 
    244 <varlistentry id="lp-cups">
    245 <term><command>lp</command></term>
    246 <listitem><para>submits files for printing or alters a pending job.</para>
    247 <indexterm zone="cups lp-cups">
    248 <primary sortas="b-lp">lp</primary>
    249 </indexterm></listitem>
    250 </varlistentry>
    251 
    252 <varlistentry id="lpadmin">
    253 <term><command>lpadmin</command></term>
    254 <listitem><para>configures printer and class queues provided by
    255 <application><acronym>CUPS</acronym></application>.</para>
    256 <indexterm zone="cups lpadmin">
    257 <primary sortas="b-lpadmin">lpadmin</primary>
    258 </indexterm></listitem>
    259 </varlistentry>
    260 
    261 <varlistentry id="lpc-cups">
    262 <term><command>lpc</command></term>
    263 <listitem><para> provides limited control over printer and class queues
    264 provided by <application><acronym>CUPS</acronym></application>.</para>
    265 <indexterm zone="cups lpc-cups">
    266 <primary sortas="b-lpc">lpc</primary>
    267 </indexterm></listitem>
    268 </varlistentry>
    269 
    270 <varlistentry id="lpinfo">
    271 <term><command>lpinfo</command></term>
    272 <listitem><para>lists the available devices or drivers known to the
    273 <application><acronym>CUPS</acronym></application> server.</para>
    274 <indexterm zone="cups lpinfo">
    275 <primary sortas="b-lpinfo">lpinfo</primary>
    276 </indexterm></listitem>
    277 </varlistentry>
    278 
    279 <varlistentry id="lpmove">
    280 <term><command>lpmove</command></term>
    281 <listitem><para>moves the specified job to a new destination.</para>
    282 <indexterm zone="cups lpmove">
    283 <primary sortas="b-lpmove">lpmove</primary>
    284 </indexterm></listitem>
    285 </varlistentry>
    286 
    287 <varlistentry id="lpoptions">
    288 <term><command>lpoptions</command></term>
    289 <listitem><para>displays or sets printer options and defaults.</para>
    290 <indexterm zone="cups lpoptions">
    291 <primary sortas="b-lpoptions">lpoptions</primary>
    292 </indexterm></listitem>
    293 </varlistentry>
    294 
    295 <varlistentry id="lppasswd">
    296 <term><command>lppasswd</command></term>
    297 <listitem><para>adds, changes or deletes passwords in the
    298 <application><acronym>CUPS</acronym></application> digest password file
    299 <filename>passwd.md5</filename>.</para>
    300 <indexterm zone="cups lppasswd">
    301 <primary sortas="b-lppasswd">lppasswd</primary>
    302 </indexterm></listitem>
    303 </varlistentry>
    304 
    305 <varlistentry id="lpq-cups">
    306 <term><command>lpq</command></term>
    307 <listitem><para>shows the current print queue status on the named
    308 printer.</para>
    309 <indexterm zone="cups lpq-cups">
    310 <primary sortas="b-lpq">lpq</primary>
    311 </indexterm></listitem>
    312 </varlistentry>
    313 
    314 <varlistentry id="lpr-cups">
    315 <term><command>lpr</command></term>
    316 <listitem><para>submits files for printing.</para>
    317 <indexterm zone="cups lpr-cups">
    318 <primary sortas="b-lpr">lpr</primary>
    319 </indexterm></listitem>
    320 </varlistentry>
    321 
    322 <varlistentry id="lprm-cups">
    323 <term><command>lprm</command></term>
    324 <listitem><para>cancels print jobs that have been queued for printing.</para>
    325 <indexterm zone="cups lprm-cups">
    326 <primary sortas="b-lprm">lprm</primary>
    327 </indexterm></listitem>
    328 </varlistentry>
    329 
    330 <varlistentry id="lpstat-cups">
    331 <term><command>lpstat</command></term>
    332 <listitem><para>displays status information about the current classes, jobs,
    333 and printers.</para>
    334 <indexterm zone="cups lpstat-cups">
    335 <primary sortas="b-lpstat">lpstat</primary>
    336 </indexterm></listitem>
    337 </varlistentry>
    338 
    339 <varlistentry id="reject">
    340 <term><command>reject</command></term>
    341 <listitem><para>instructs the printing system to reject print jobs to the
    342 specified destinations.</para>
    343 <indexterm zone="cups reject">
    344 <primary sortas="b-reject">reject</primary>
    345 </indexterm></listitem>
    346 </varlistentry>
    347 </variablelist>
    348 
    349 </sect2>
     15  <?dbhtml filename="cups.html"?>
     16
     17  <sect1info>
     18    <othername>$LastChangedBy$</othername>
     19    <date>$Date$</date>
     20  </sect1info>
     21
     22  <title>CUPS-&cups-version;</title>
     23
     24  <indexterm zone="cups">
     25    <primary sortas="a-CUPS">CUPS</primary>
     26  </indexterm>
     27
     28  <sect2 role="package">
     29    <title>Introduction to CUPS</title>
     30
     31    <para>The Common Unix Printing System (CUPS) is a print spooler and
     32    associated utilities. It is based on the "Internet Printing
     33    Protocol" and provides printing services to most PostScript and raster
     34    printers.</para>
     35
     36    <bridgehead renderas="sect3">Package Information</bridgehead>
     37    <itemizedlist spacing="compact">
     38      <listitem>
     39        <para>Download (HTTP): <ulink url="&cups-download-http;"/></para>
     40      </listitem>
     41      <listitem>
     42        <para>Download (FTP): <ulink url="&cups-download-ftp;"/></para>
     43      </listitem>
     44      <listitem>
     45        <para>Download MD5 sum: &cups-md5sum;</para>
     46      </listitem>
     47      <listitem>
     48        <para>Download size: &cups-size;</para>
     49      </listitem>
     50      <listitem>
     51        <para>Estimated disk space required: &cups-buildsize;</para>
     52      </listitem>
     53      <listitem>
     54        <para>Estimated build time: &cups-time;</para>
     55      </listitem>
     56    </itemizedlist>
     57
     58    <bridgehead renderas="sect3">TEMPLATE Dependencies</bridgehead>
     59
     60    <bridgehead renderas="sect4">Recommended</bridgehead>
     61    <para><xref linkend="libjpeg"/>,
     62    <xref linkend="libpng"/>,
     63    and <xref linkend="libtiff"/></para>
     64
     65    <bridgehead renderas="sect4">Optional</bridgehead>
     66    <para><xref linkend="openssl"/> or
     67    <ulink url="http://www.gnu.org/software/gnutls/">GnuTLS</ulink> (which needs
     68    <ulink url="ftp://ftp.gnupg.org/gcrypt/alpha/libgpg-error/">
     69    libgpg-error</ulink>,
     70    <ulink url="ftp://ftp.gnupg.org/gcrypt/libgcrypt/">libgcrypt</ulink> and
     71    <ulink url="ftp://ftp.gnupg.org/gcrypt/alpha/gnutls/opencdk/">opencdk</ulink>,
     72    in that order),
     73    <xref linkend="Linux_PAM"/>,
     74    <xref linkend="php"/>,
     75    <xref linkend="python"/>,
     76    <xref linkend="jdk"/>,
     77    <ulink url="http://www.openslp.org/">OpenSLP</ulink>,
     78    <ulink url="http://packages.debian.org/unstable/source/libpaper">
     79    libpaper</ulink> and
     80    <ulink url="http://valgrind.kde.org/">Valgrind</ulink> (optionally used if
     81    running the test suites)</para>
     82
     83  </sect2>
     84
     85  <sect2 role="installation">
     86    <title>Installation of CUPS</title>
     87
     88    <para>Create an <systemitem class="username">lp</systemitem> user, as
     89    <application>CUPS</application> will install the
     90    <command>lppasswd</command> command SUID to this user. Use the following
     91    command as the <systemitem class="username">root</systemitem> user:</para>
     92
     93<screen role="root"><userinput>useradd -c "Print Service User" -d /dev/null -g lp -s /bin/false lp</userinput></screen>
     94
     95    <para>If you utilize <application>Linux-PAM</application>, you need to
     96    modify some files so <application>CUPS</application> can find needed headers.
     97    Make the appropriate modifications using the following command:</para>
     98
     99<screen><userinput>sed -i -e "s@pam/pam@security/pam@g" \
     100{config-scripts/cups-pam.m4,scheduler/auth.c,configure}</userinput></screen>
     101
     102    <para>Install <application>CUPS</application> by running the
     103    following commands:</para>
     104
     105<screen><userinput>./configure &amp;&amp;
     106make</userinput></screen>
     107
     108    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     109
     110<screen role="root"><userinput>make install</userinput></screen>
     111
     112  </sect2>
     113
     114  <sect2 role="commands">
     115    <title>Command Explanations</title>
     116
     117    <para>The basic default behavior of the installation is appropriate for
     118    LFS systems. <application>CUPS</application> files are placed in
     119    <filename class="directory">/usr/bin</filename>,
     120    <filename class="directory">/usr/sbin</filename>,
     121    <filename class="directory">/var</filename> and
     122    <filename class="directory">/etc/cups</filename>.</para>
     123
     124  </sect2>
     125
     126  <sect2 role="configuration">
     127    <title>Configuring CUPS</title>
     128
     129    <para>Configuration of <application>CUPS</application> is dependent on
     130    the type of printer and can be complex. Generally, PostScript printers
     131    are easier. For detailed instructions on configuration and use of
     132    <application>CUPS</application>, see <ulink
     133    url="http://www.cups.org/documentation.php"/>. The Software Administrators
     134    Manual and Software Users Manual are particularly useful.</para>
     135
     136    <para>For non-PostScript printers to print with
     137    <application>CUPS</application>, you need to install
     138    <xref linkend="espgs"/> to convert PostScript to raster images
     139    and a driver (e.g., from <xref linkend="gimp-print"/>) to convert
     140    the resulting raster images to a form that the printer understands.
     141    <ulink url="http://www.linuxprinting.org/foomatic.html">Foomatic</ulink>
     142    drivers use Ghostscript to convert PostScript to a printable form directly,
     143    but this is considered to be a hack by
     144    <application>CUPS</application> developers.</para>
     145
     146    <sect3  id="cups-init">
     147      <title>Boot Script</title>
     148
     149      <para>During the install, <application>CUPS</application> created
     150      the startup file <command>/etc/rc.d/init.d/cups</command>. The file
     151      works, but you may want to change it to a more conventional
     152      LFS startup file by installing the script included in the
     153      <xref linkend="intro-important-bootscripts"/> package:</para>
     154
     155      <indexterm zone="cups cups-init">
     156        <primary sortas="f-cups">cups</primary>
     157      </indexterm>
     158
     159<screen role="root"><userinput>make install-cups</userinput></screen>
     160
     161    </sect3>
     162
     163  </sect2>
     164
     165  <sect2 role="content">
     166    <title>Contents</title>
     167
     168    <segmentedlist>
     169      <segtitle>Installed Programs</segtitle>
     170      <segtitle>Installed Libraries</segtitle>
     171      <segtitle>Installed Directories</segtitle>
     172
     173      <seglistitem>
     174        <seg>accept, cancel, cups-config, cupsaddsmb, cupsd, cupstestppd, disable,
     175        enable, lp, lpadmin, lpc, lpinfo, lpmove, lpoptions, lppasswd, lpq, lpr,
     176        lprm, lpstat, and reject</seg>
     177        <seg>libcups.[so,a], libcupsimage.[so,a], and various filters and backend
     178        drivers</seg>
     179        <seg>/etc/cups, /usr/include/cups, /usr/lib/cups, /usr/share/doc/cups,
     180        /usr/share/cups, /var/log/cups, and /var/spool/cups</seg>
     181      </seglistitem>
     182    </segmentedlist>
     183
     184    <variablelist>
     185      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
     186      <?dbfo list-presentation="list"?>
     187      <?dbhtml list-presentation="table"?>
     188
     189      <varlistentry id="accept">
     190        <term><command>accept</command></term>
     191        <listitem>
     192          <para>instructs the printing system to accept print jobs to the
     193          specified destinations.</para>
     194          <indexterm zone="cups accept">
     195            <primary sortas="b-accept">accept</primary>
     196          </indexterm>
     197        </listitem>
     198      </varlistentry>
     199
     200      <varlistentry id="cancel-cups">
     201        <term><command>cancel</command></term>
     202        <listitem>
     203          <para>cancels existing print jobs from the print queues.</para>
     204          <indexterm zone="cups cancel-cups">
     205            <primary sortas="b-cancel">cancel</primary>
     206          </indexterm>
     207        </listitem>
     208      </varlistentry>
     209
     210      <varlistentry id="cups-config">
     211        <term><command>cups-config</command></term>
     212        <listitem>
     213          <para>is a <application>CUPS</application>
     214          program configuration utility.</para>
     215          <indexterm zone="cups cups-config">
     216            <primary sortas="b-cups-config">cups-config</primary>
     217          </indexterm>
     218        </listitem>
     219      </varlistentry>
     220
     221      <varlistentry id="cupsaddsmb">
     222        <term><command>cupsaddsmb</command></term>
     223        <listitem>
     224          <para>exports printers to the <application>Samba</application>
     225          software for use with Windows clients.</para>
     226          <indexterm zone="cups cupsaddsmb">
     227            <primary sortas="b-cupsaddsmb">cupsaddsmb</primary>
     228          </indexterm>
     229        </listitem>
     230      </varlistentry>
     231
     232      <varlistentry id="cupsd">
     233        <term><command>cupsd</command></term>
     234        <listitem>
     235          <para>is the scheduler for the Common Unix Printing System.</para>
     236          <indexterm zone="cups cupsd">
     237            <primary sortas="b-cupsd">cupsd</primary>
     238          </indexterm>
     239        </listitem>
     240      </varlistentry>
     241
     242      <varlistentry id="cupstestppd">
     243        <term><command>cupstestppd</command></term>
     244        <listitem>
     245          <para>tests the conformance of PPD files.</para>
     246          <indexterm zone="cups cupstestppd">
     247            <primary sortas="b-cupstestppd">cupstestppd</primary>
     248          </indexterm>
     249        </listitem>
     250      </varlistentry>
     251
     252      <varlistentry id="disable">
     253        <term><command>disable</command></term>
     254        <listitem>
     255          <para>stops the named printers or classes.</para>
     256          <indexterm zone="cups disable">
     257            <primary sortas="b-disable">disable</primary>
     258          </indexterm>
     259        </listitem>
     260      </varlistentry>
     261
     262      <varlistentry id="enable">
     263        <term><command>enable</command></term>
     264        <listitem>
     265          <para>starts the named printers or classes.</para>
     266          <indexterm zone="cups enable">
     267            <primary sortas="b-enable">enable</primary>
     268          </indexterm>
     269        </listitem>
     270      </varlistentry>
     271
     272      <varlistentry id="lp-cups">
     273        <term><command>lp</command></term>
     274        <listitem>
     275          <para>submits files for printing or alters a pending job.</para>
     276          <indexterm zone="cups lp-cups">
     277            <primary sortas="b-lp">lp</primary>
     278          </indexterm>
     279        </listitem>
     280      </varlistentry>
     281
     282      <varlistentry id="lpadmin">
     283        <term><command>lpadmin</command></term>
     284        <listitem>
     285          <para>configures printer and class queues provided by
     286          <application>CUPS</application>.</para>
     287          <indexterm zone="cups lpadmin">
     288            <primary sortas="b-lpadmin">lpadmin</primary>
     289          </indexterm>
     290        </listitem>
     291      </varlistentry>
     292
     293      <varlistentry id="lpc-cups">
     294        <term><command>lpc</command></term>
     295        <listitem>
     296          <para> provides limited control over printer and class queues
     297          provided by <application>CUPS</application>.</para>
     298          <indexterm zone="cups lpc-cups">
     299            <primary sortas="b-lpc">lpc</primary>
     300          </indexterm>
     301        </listitem>
     302      </varlistentry>
     303
     304      <varlistentry id="lpinfo">
     305        <term><command>lpinfo</command></term>
     306        <listitem>
     307          <para>lists the available devices or drivers known to the
     308          <application>CUPS</application> server.</para>
     309          <indexterm zone="cups lpinfo">
     310            <primary sortas="b-lpinfo">lpinfo</primary>
     311          </indexterm>
     312        </listitem>
     313      </varlistentry>
     314
     315      <varlistentry id="lpmove">
     316        <term><command>lpmove</command></term>
     317        <listitem>
     318          <para>moves the specified job to a new destination.</para>
     319          <indexterm zone="cups lpmove">
     320            <primary sortas="b-lpmove">lpmove</primary>
     321          </indexterm>
     322      </listitem>
     323      </varlistentry>
     324
     325      <varlistentry id="lpoptions">
     326        <term><command>lpoptions</command></term>
     327        <listitem>
     328          <para>displays or sets printer options and defaults.</para>
     329          <indexterm zone="cups lpoptions">
     330            <primary sortas="b-lpoptions">lpoptions</primary>
     331          </indexterm>
     332        </listitem>
     333      </varlistentry>
     334
     335      <varlistentry id="lppasswd">
     336        <term><command>lppasswd</command></term>
     337        <listitem>
     338          <para>adds, changes or deletes passwords in the
     339          <application>CUPS</application> digest password file
     340          <filename>passwd.md5</filename>.</para>
     341          <indexterm zone="cups lppasswd">
     342            <primary sortas="b-lppasswd">lppasswd</primary>
     343          </indexterm>
     344        </listitem>
     345      </varlistentry>
     346
     347      <varlistentry id="lpq-cups">
     348        <term><command>lpq</command></term>
     349        <listitem>
     350          <para>shows the current print queue status on the named printer.</para>
     351          <indexterm zone="cups lpq-cups">
     352            <primary sortas="b-lpq">lpq</primary>
     353          </indexterm>
     354        </listitem>
     355      </varlistentry>
     356
     357      <varlistentry id="lpr-cups">
     358        <term><command>lpr</command></term>
     359        <listitem>
     360          <para>submits files for printing.</para>
     361          <indexterm zone="cups lpr-cups">
     362            <primary sortas="b-lpr">lpr</primary>
     363          </indexterm>
     364        </listitem>
     365      </varlistentry>
     366
     367      <varlistentry id="lprm-cups">
     368        <term><command>lprm</command></term>
     369        <listitem>
     370          <para>cancels print jobs that have been queued for printing.</para>
     371          <indexterm zone="cups lprm-cups">
     372            <primary sortas="b-lprm">lprm</primary>
     373          </indexterm>
     374        </listitem>
     375      </varlistentry>
     376
     377      <varlistentry id="lpstat-cups">
     378        <term><command>lpstat</command></term>
     379        <listitem>
     380          <para>displays status information about the current classes, jobs,
     381          and printers.</para>
     382          <indexterm zone="cups lpstat-cups">
     383            <primary sortas="b-lpstat">lpstat</primary>
     384          </indexterm>
     385        </listitem>
     386      </varlistentry>
     387
     388      <varlistentry id="reject">
     389        <term><command>reject</command></term>
     390        <listitem>
     391          <para>instructs the printing system to reject print jobs to the
     392          specified destinations.</para>
     393          <indexterm zone="cups reject">
     394            <primary sortas="b-reject">reject</primary>
     395          </indexterm>
     396        </listitem>
     397      </varlistentry>
     398
     399    </variablelist>
     400
     401  </sect2>
    350402
    351403</sect1>
Note: See TracChangeset for help on using the changeset viewer.