[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: sid kde printing and cups setup



mlaks <mlaks@verizon.net> writes:

> Up to date SID!
>
> 1) kde printing system will not talk to cups. Any ideas on that?

It Works For Me.  Can you use cups normally from the command-line?

i.e. 'lpstat -a' shows a complete list of printers, and 'lpr -P
printer' prints a file?

> 2) cupsd.conf file - I lost my old one. The prototype seems different in 
> latest cups.
>
> Can some kind soul display a working cupsd.conf that will allow
> printing to a local printer on the local host and allow printing
> from my lan 192.168.1.* to this printer as well.

> I am able to get printing working locally but it will  not allow my  other 
> networked printers to print.

Just make sure you have @LOCAL in your "Location /" section:

<Location />
  Order allow,deny
  Allow localhost
  Allow @LOCAL
</Location>

> In my brand new up to date sid!!!! 
>
> 1) I see that kde printing is messed up. Meaning that for some
> reason the kde "control center" will not talk to the "cups printing
> system". I google and see much discussions elsewhere about this so
> will wait till this is fixed unless someone has a good idea.

There were some issues a month or so back, but it's working for me
right now.

> 2) I have been able to get write a cupsd.conf file that allows cups
> to print from my own pc. I also configured the printer via web
> interface (not via kde which wont talk to it) with port 631.

Make sure you have "Port 631" (and nothing else) in
/etc/cups/cups.d/ports.conf.

> Can  someone display a working cupsd.conf that allows local lan printing 
> access as well as local  pc access?

This is the standard cupsd.conf, plus a few tweaks to allow network
access for users.


#
#
#   Sample configuration file for the Common UNIX Printing System (CUPS)
#   scheduler.  See "man cupsd.conf" for a complete description of this
#   file.
#

# Log general information in error_log - change "info" to "debug" for
# troubleshooting...
#LogLevel warning
LogLevel warning

# Administrator user group...
SystemGroup lpadmin

# Only listen for connections from the local machine.
# These settings are configured in /etc/cups/cups.d/ports.conf so that
# changing them does not require to change this file.
# Listen localhost:631
# Listen /var/run/cups/cups.sock

# Show shared printers on the local network.
# The 'Browsing' setting is configured in /etc/cups/cups.d/browse.conf
# so that changing it does not require to change this file.
Browsing On
BrowseOrder allow,deny
BrowseAllow from @LOCAL
BrowseAllow from @IF(eth0)
BrowseAddress @LOCAL

# Default authentication type, when authentication is required...
DefaultAuthType Basic

# Restrict access to the server...
<Location />
  Order allow,deny
  Allow localhost
  Allow @LOCAL
</Location>

# Restrict access to the admin pages...
<Location /admin>
  Encryption Required
  Order allow,deny
  Allow localhost
</Location>

# Restrict access to configuration files...
<Location /admin/conf>
  AuthType Basic
  Require user @SYSTEM
  Order allow,deny
  Allow localhost
</Location>

# Set the default printer/job policies...
<Policy default>
  # Job-related operations must be done by the owner or an adminstrator...
  <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>
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>

  # All administration operations require an adminstrator to authenticate...
  <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>
    AuthType Basic
    Require user @SYSTEM
    Order deny,allow
  </Limit>

  # Only the owner or an administrator can cancel or authenticate a job...
  <Limit Cancel-Job CUPS-Authenticate-Job>
    Require user @OWNER @SYSTEM
    Order deny,allow
  </Limit>

  <Limit All>
    Order deny,allow
  </Limit>
</Policy>

# Include files in /etc/cups/conf.d
Include /etc/cups/cups.d/ports.conf
Include /etc/cups/cups.d/browse.conf

#
#


Regards,
Roger

-- 
Roger Leigh
                Printing on GNU/Linux?  http://gutenprint.sourceforge.net/
                Debian GNU/Linux        http://www.debian.org/
                GPG Public Key: 0x25BFB848.  Please sign and encrypt your mail.

Attachment: pgpbbdHyUvns4.pgp
Description: PGP signature


Reply to: