I have an hp set up with cups... how can I print from my windows box down the way? I am wireless networked through a router. I had this working just fine in windows. I can print locally
cupsd.conf // deleted some comments so it would fit
cupsd.conf // deleted some comments so it would fit
Code:
Classification none DefaultCharset UTF-8 DefaultLanguage en Printcap /var/run/cups/printcap PrintcapFormat BSD RemoteRoot remroot SystemGroup lpadmin # Encryption certificate (ServerCertificate) # # The file to read containing the server's certificate. # Defaults to "/etc/cups/ssl/server.crt". # # ex: /etc/cups/ssl/server.crt # #ServerCertificate /etc/cups/ssl/server.crt f ServerCertificate /etc/cups/ssl/server.crt ServerKey /etc/cups/ssl/server.key <Location /> Encryption IfRequested Satisfy All Order deny,allow Deny From All Allow From 127.0.0.1 </Location> <Location /jobs> AuthType Basic AuthClass User Encryption IfRequested Satisfy All Order allow,deny </Location> <Location /admin> AuthType Basic AuthClass System Encryption IfRequested Satisfy All Order deny,allow Deny From All Allow From 127.0.0.1 </Location> HostnameLookups Off KeepAlive On KeepAliveTimeout 60 MaxClients 100 MaxRequestSize 0m Timeout 300 Listen 127.0.0.1:631 AccessLog /var/log/cups/access_log ErrorLog /var/log/cups/error_log PageLog /var/log/cups/page_log MaxLogSize 1m LogLevel info PreserveJobHistory On PreserveJobFiles Off AutoPurgeJobs No MaxJobs 0 MaxJobsPerPrinter 0 MaxJobsPerUser 0 User lp Group lp RIPCache 8m FilterLimit 0 DataDir /usr/share/cups DocumentRoot /usr/share/cups/doc-root RequestRoot /var/spool/cups ServerBin /usr/lib/cups ServerRoot /etc/cups TempDir /var/spool/cups/tmp Browsing On BrowseProtocols CUPS BrowsePort 631 BrowseInterval 30 BrowseTimeout 300 BrowseAddress @LOCAL BrowseOrder allow,deny ImplicitClasses On ImplicitAnyClasses Off HideImplicitMembers Yes BrowseShortNames Yes # Unknown configfileperm 0600 runasuser Yes include cupsd-browsing.conf
Comment