<mediawiki xmlns="http://www.mediawiki.org/xml/export-0.10/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mediawiki.org/xml/export-0.10/ http://www.mediawiki.org/xml/export-0.10.xsd" version="0.10" xml:lang="de">
  <siteinfo>
    <sitename>Linupedia.org</sitename>
    <dbname>linupediadb</dbname>
    <base>https://linupedia.org/opensuse/Hauptseite</base>
    <generator>MediaWiki 1.31.0</generator>
    <case>first-letter</case>
    <namespaces>
      <namespace key="-2" case="first-letter">Medium</namespace>
      <namespace key="-1" case="first-letter">Spezial</namespace>
      <namespace key="0" case="first-letter" />
      <namespace key="1" case="first-letter">Diskussion</namespace>
      <namespace key="2" case="first-letter">Benutzer</namespace>
      <namespace key="3" case="first-letter">Benutzer Diskussion</namespace>
      <namespace key="4" case="first-letter">Linupedia.org</namespace>
      <namespace key="5" case="first-letter">Linupedia.org Diskussion</namespace>
      <namespace key="6" case="first-letter">Datei</namespace>
      <namespace key="7" case="first-letter">Datei Diskussion</namespace>
      <namespace key="8" case="first-letter">MediaWiki</namespace>
      <namespace key="9" case="first-letter">MediaWiki Diskussion</namespace>
      <namespace key="10" case="first-letter">Vorlage</namespace>
      <namespace key="11" case="first-letter">Vorlage Diskussion</namespace>
      <namespace key="12" case="first-letter">Hilfe</namespace>
      <namespace key="13" case="first-letter">Hilfe Diskussion</namespace>
      <namespace key="14" case="first-letter">Kategorie</namespace>
      <namespace key="15" case="first-letter">Kategorie Diskussion</namespace>
    </namespaces>
  </siteinfo>
  <page>
    <title>Simple CUPS Konfiguration mit einem einzelnen USB Drucker</title>
    <ns>0</ns>
    <id>1772</id>
    <revision>
      <id>3035</id>
      <parentid>3032</parentid>
      <timestamp>2006-08-28T20:07:08Z</timestamp>
      <contributor>
        <username>TomcatMJ</username>
        <id>12</id>
      </contributor>
      <minor/>
      <comment>Simple CUPS Kunfiguration mit einem einzelnen USB Drucker wurde nach Simple CUPS Konfiguration mit einem einzelnen USB Drucker verschoben: Blödsinniger Typo im Seitennamen</comment>
      <model>wikitext</model>
      <format>text/x-wiki</format>
      <text xml:space="preserve" bytes="3183">== Simple Musterkonfiguration mit einem einzelnen USB-Drucker (Epson Stylus Photo R300) an einem Einzelplatzrechner:==

/etc/cups/cupsd.conf:

&lt;code&gt;
 #
 # &quot;$Id: cupsd.conf.in 5454 2006-04-23 21:46:38Z mike $&quot;
 #
 #   Sample configuration file for the Common UNIX Printing System (CUPS)
 #   scheduler.  See &quot;man cupsd.conf&quot; for a complete description of this
 #   file.
 #
 
 # Log general information in error_log - change &quot;info&quot; to &quot;debug&quot; for
 # troubleshooting...
 LogLevel info 
 
 # Administrator user group...
 SystemGroup sys root
 
 # Only listen for connections from the local machine.
 Listen localhost:631
 Listen /var/run/cups/cups.sock
 
 # Show shared printers on the local network.
 Browsing On
 BrowseOrder allow,deny
 BrowseAllow @LOCAL 
 
 # Default authentication type, when authentication is required...
 DefaultAuthType Basic
 
 # Restrict access to the server...
 &lt;Location /&gt;
 Order allow,deny
 Allow From localhost
 Allow From 127.0.0.2
 &lt;/Location&gt;
 
 # Restrict access to the admin pages...
 &lt;Location /admin&gt;
 Encryption Required
 Order allow,deny
 Allow From localhost
 &lt;/Location&gt; 
 
 # Restrict access to configuration files...
 &lt;Location /admin/conf&gt;
 AuthType Basic
 Require user @SYSTEM
 Order allow,deny
 Allow From localhost
 &lt;/Location&gt;
 
 # Set the default printer/job policies...
 &lt;Policy default&gt;
   # Job-related operations must be done by the owner or an adminstrator...
 &lt;Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs  Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription  Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job  CUPS-Move-Job&gt;
 Require user @OWNER @SYSTEM
 Order deny,allow
 &lt;/Limit&gt;
 
   # All administration operations require an adminstrator to authenticate...
 &lt;Limit Pause-Printer Resume-Printer Set-Printer-Attributes Enable-Printer  Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs  Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer  Promote-Job Schedule-Job-After CUPS-Add-Printer CUPS-Delete-Printer CUPS-Add-Class  CUPS-Delete-Class CUPS-Accept-Jobs CUPS-Reject-Jobs CUPS-Set-Default&gt;
 AuthType Basic
 Require user @SYSTEM
 Order deny,allow
 &lt;/Limit&gt;
 
   # Only the owner or an administrator can cancel or authenticate a job...
 &lt;Limit Cancel-Job CUPS-Authenticate-Job&gt;
 Require user @OWNER @SYSTEM
 Order deny,allow
 &lt;/Limit&gt;
 
 &lt;Limit All&gt;
 Order deny,allow
 &lt;/Limit&gt;
 &lt;/Policy&gt;
 
 #
 # End of &quot;$Id: cupsd.conf.in 5454 2006-04-23 21:46:38Z mike $&quot;.
 #
&lt;/code&gt;

/etc/cups/printers.conf

&lt;code&gt;
 # Printer configuration file for CUPS v1.2.0
 # Written by cupsd on 2006-08-28 13:08
 &lt;DefaultPrinter printer&gt;
 Info Epson_Stylus_Photo_R300
 Location
 DeviceURI usb://EPSON/Stylus%20Photo%20R300
 State Idle
 StateTime 1156759971
 Accepting Yes
 Shared Yes
 JobSheets none none
 QuotaPeriod 0
 PageLimit 0
 KLimit 0
 OpPolicy default
 ErrorPolicy stop-printer
 &lt;/Printer&gt;
&lt;/code&gt;

== Musterkonfiguration für Printserver mit einzelnem Drucker ==

--[[Benutzer:TomcatMJ|TomcatMJ]] 21:39, 28. Aug 2006 (CEST)
[[Category:Drucker]]
[[Category:Musterkonfigurationen]]</text>
      <sha1>fudrxyo48dl0shweanp2hfuckhglgjq</sha1>
    </revision>
  </page>
</mediawiki>
