Slackware This Forum is for the discussion of Slackware Linux.
|
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
09-21-2014, 01:34 PM
|
#1
|
MLED Founder
Registered: Jun 2011
Location: Montpezat (South France)
Distribution: CentOS, OpenSUSE
Posts: 3,453
|
Printer on a LAN: mind sharing your cupsd.conf?
Hi,
I'm currently wading through the rather cryptic documentation of CUPS. I have a request that may sound unusual. If you use CUPS in a local network for sharing a printer, would you eventually share your cupsd.conf, especially the first stanzas of this file? Tomorrow I have to fiddle with a malfunctioning printer in our school, and the idea is to have some basic inspiration before starting some experimenting.
Thanks,
Niki
|
|
|
09-21-2014, 02:58 PM
|
#2
|
LQ Guru
Registered: Mar 2004
Distribution: Slackware
Posts: 6,559
|
Here is mine, I think it is untouched stock config...
|
|
|
09-21-2014, 04:14 PM
|
#3
|
LQ Guru
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,905
|
For the printer being shared, the configuration in /etc/cups/printers.conf will contain
For network print browsing, the following must be enabled on the server in cupsd.conf
Code:
# Show shared printers on the local network.
Browsing On
Keep in mind the version of CUPS too, as for version 1.6 onwards, CUPS advertises using dnnsd, but for older versions cups can also be used. 'BrowseLocalProtocols' defines the protocols used to advertise printers on a LAN. By default it will use cups and dnssd (for CUPS 1.5), and only dnssd for 1.6 onwards.
Firewalls are also important to consider. Checking the server from a client-machine with nmap can be useful here
Code:
nmap <IP address of CUPS server>
For CUPS machines, port 631 should be reported as open (IPP and CUPS communication). For dnnsd advertising, port 5353 is relevant.
The first section of my cupsd.conf for reference
Code:
LogLevel warn
SystemGroup sys root
Port 631
Listen /var/run/cups/cups.sock
# Show shared printers on the local network.
Browsing On
BrowseOrder allow,deny
BrowseAllow all
BrowseRemoteProtocols dnssd
BrowseLocalProtocols dnssd
DefaultAuthType Basic
WebInterface Yes
<Location />
Order allow,deny
Allow @LOCAL
</Location>
<Location /admin>
Order allow,deny
</Location>
<Location /admin/conf>
AuthType Default
Require user @SYSTEM
Order allow,deny
</Location>
<Policy default>
|
|
|
09-21-2014, 06:51 PM
|
#4
|
Member
Registered: Aug 2012
Distribution: Slackware64 15.0 (started with 13.37). Testing -current in a spare partition.
Posts: 957
|
I do all the cups configuration in the cups webadmin,
cupsd.conf is /etc/cups/cupsd.conf?
Mine is this, but doesn't seem to have my printer.
Code:
#
# "$Id: cupsd.conf.in 9407 2010-12-09 21:24:51Z mike $"
#
# Sample configuration file for the CUPS scheduler. See "man cupsd.conf" for a
# complete description of this file.
#
# Log general information in error_log - change "warn" to "debug"
# for troubleshooting...
LogLevel warn
# 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 all
BrowseLocalProtocols CUPS
# Default authentication type, when authentication is required...
DefaultAuthType Basic
# Web interface setting...
WebInterface Yes
# Restrict access to the server...
<Location />
Order allow,deny
</Location>
# Restrict access to the admin pages...
<Location /admin>
Order allow,deny
</Location>
# Restrict access to configuration files...
<Location /admin/conf>
AuthType Default
Require user @SYSTEM
Order allow,deny
</Location>
# Set the default printer/job policies...
<Policy default>
# Job/subscription privacy...
JobPrivateAccess default
JobPrivateValues default
SubscriptionPrivateAccess default
SubscriptionPrivateValues default
# Job-related operations must be done by the owner or an administrator...
<Limit Create-Job Print-Job Print-URI Validate-Job>
Order deny,allow
</Limit>
<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 Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
# All administration operations require an administrator to authenticate...
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
# All printer operations require a printer operator to authenticate...
<Limit Pause-Printer Resume-Printer 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 Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
AuthType Default
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>
# Set the authenticated printer/job policies...
<Policy authenticated>
# Job/subscription privacy...
JobPrivateAccess default
JobPrivateValues default
SubscriptionPrivateAccess default
SubscriptionPrivateValues default
# Job-related operations must be done by the owner or an administrator...
<Limit Create-Job Print-Job Print-URI Validate-Job>
AuthType Default
Order deny,allow
</Limit>
<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 Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
AuthType Default
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
# All administration operations require an administrator to authenticate...
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
# All printer operations require a printer operator to authenticate...
<Limit Pause-Printer Resume-Printer 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 Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
AuthType Default
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>
AuthType Default
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit All>
Order deny,allow
</Limit>
</Policy>
#
# End of "$Id: cupsd.conf.in 9407 2010-12-09 21:24:51Z mike $".
#
Since I share the printer with other machines through Samba, maybe my smb.conf can help, it works
All printer related stuff I copied from Slackware Wiki or AlienBob Wiki.
Code:
#======================= Global Settings =====================================
[global]
workgroup = WORKGROUP
server string = SlackSamba
# opção `security = user' evita acesso sem autenticação
# share é obsoleto
security = share
server role = standalone
# security = user
map to guest = bad user
guest account = convidado
# guest only = yes
hosts allow = 10.10. 192.168. 127.
load printers = yes
# you may wish to override the location of the printcap file
printcap name = cups
# It should not be necessary to specify the print system type unless
# it is non-standard. Currently supported print systems include:
# bsd, cups, sysv, plp, lprng, aix, hpux, qnx
printing = cups
# Commands with which to control the printer queues
print command = lpr -oraw -r -P'%p' %s
lpq command = /usr/bin/lpq -P%p
# log file = /var/log/samba.%m
log file = /var/log/samba.log
max log size = 1000
netbios name = paulo
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
# wins support = yes
# name resolve order = host bcast lmhosts wins
# OS Level determines the precedence of this server in master browser
# elections. The default value should be reasonable
# os level = 33
# Domain Master specifies Samba to be the Domain Master Browser. This
# allows Samba to collate browse lists between subnets. Don't use this
# if you already have a Windows NT domain controller doing this job
# domain master = yes
# Preferred Master causes Samba to force a local browser election on startup
# and gives it a slightly higher chance of winning the election
# preferred master = yes
dns proxy = no
# unix charset = ISO-8859-1 (UTF-8)
# unix charset = ASCII
unix charset = UTF8
# dos charset = 850
#============================ Share Definitions ==============================
# NOTE: If you have a BSD-style print system there is no need to
# specifically define each individual printer
[printers]
comment = All Printers
path = /var/spool/samba
# browseable = no
browseable = yes
# Set public = yes to allow user 'guest account' to print
guest ok = yes
writable = no
printable = yes
# This one is useful for people to share files
[SlackSamba]
comment = acesso leitura e escrita
path = /samba-share
read only = no
public = yes
guest ok = yes
#[mp3]
# comment = acesso somente leitura
# path = /seagate2t/MP3
# read only = yes
# public = yes
# guest ok = yes
#[SlackSamba]
# path = /samba-share
# valid users = convidado
# public = yes
# only guest = yes
# read only = no
# writable = yes
# printable = no
Sorry about posted files, I tried to attach but upload didn't work.
|
|
|
09-21-2014, 07:17 PM
|
#5
|
LQ Guru
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,905
|
@Paulo2: Just to clarify, /etc/cups/cupsd.conf won't have setting pertaining to your printer, as they're in /etc/cups/printers.conf, and the corresponding .ppd files (located in /etc/cups/ppd/ directory). The OP didn't mention windows server/clients, but of course, it may be that samba is in use if that is the case.
|
|
|
09-21-2014, 07:35 PM
|
#6
|
Member
Registered: Aug 2012
Distribution: Slackware64 15.0 (started with 13.37). Testing -current in a spare partition.
Posts: 957
|
Quote:
Originally Posted by ferrari
@Paulo2: Just to clarify, /etc/cups/cupsd.conf won't have setting pertaining to your printer, as they're in /etc/cups/printers.conf, and the corresponding .ppd files (located in /etc/cups/ppd/ directory). The OP didn't mention windows server/clients, but of course, it may be that samba is in use if that is the case.
|
Thanks for the clarification I know about ppd file since I edit it
to add some personal paper sizes, but I didn't know about printers.conf.
I posted smb.conf because the OP mentioned "CUPS in a local network for sharing a printer".
|
|
|
09-21-2014, 08:06 PM
|
#7
|
LQ Guru
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,905
|
Quote:
I posted smb.conf because the OP mentioned "CUPS in a local network for sharing a printer".
|
Right. Samba is not actually essential with CUPS print servers and windows clients (or vice versa), as IPP and LPD printing protocols can be employed instead. I guess they'll need to flesh out some more details about their LAN environment if applicable.
|
|
|
09-21-2014, 10:14 PM
|
#8
|
Member
Registered: Aug 2012
Distribution: Slackware64 15.0 (started with 13.37). Testing -current in a spare partition.
Posts: 957
|
Quote:
Originally Posted by ferrari
Right. Samba is not actually essential with CUPS print servers and windows clients (or vice versa), as IPP and LPD printing protocols can be employed instead. I guess they'll need to flesh out some more details about their LAN environment if applicable.
|
You're right, I forgot that. Since always there is a Windows machine on my own lan, I always use smb.
|
|
|
09-22-2014, 01:15 AM
|
#9
|
MLED Founder
Registered: Jun 2011
Location: Montpezat (South France)
Distribution: CentOS, OpenSUSE
Posts: 3,453
Original Poster
|
Quote:
Originally Posted by ferrari
@Paulo2: Just to clarify, /etc/cups/cupsd.conf won't have setting pertaining to your printer, as they're in /etc/cups/printers.conf, and the corresponding .ppd files (located in /etc/cups/ppd/ directory). The OP didn't mention windows server/clients, but of course, it may be that samba is in use if that is the case.
|
It's a 100 % Linux network (and to be more exact, a 100 % Slackware network, two servers and 16 clients). Thank you very much for sharing your configurations.
|
|
|
09-22-2014, 04:00 AM
|
#10
|
Senior Member
Registered: Dec 2005
Location: Philippines
Distribution: Slackware64-current
Posts: 3,154
|
All Linux network, mostly Slackware.
Code:
LogLevel warn
SystemGroup sys root
# Allow remote access
Port 631
Listen /var/run/cups/cups.sock
# Enable printer sharing and shared printers.
Browsing On
BrowseOrder allow,deny
BrowseAllow all
BrowseRemoteProtocols CUPS
BrowseAddress @LOCAL
BrowseLocalProtocols CUPS
DefaultAuthType Basic
WebInterface Yes
<Location />
# Allow shared printing...
Order allow,deny
Allow @LOCAL
</Location>
<Location /admin>
Order allow,deny
</Location>
<Location /admin/conf>
AuthType Default
Require user @SYSTEM
Order allow,deny
</Location>
<Policy default>
JobPrivateAccess default
JobPrivateValues default
SubscriptionPrivateAccess default
SubscriptionPrivateValues default
<Limit Create-Job Print-Job Print-URI Validate-Job>
Order deny,allow
</Limit>
<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 Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit Pause-Printer Resume-Printer 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 Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit Cancel-Job CUPS-Authenticate-Job>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit All>
Order deny,allow
</Limit>
</Policy>
<Policy authenticated>
JobPrivateAccess default
JobPrivateValues default
SubscriptionPrivateAccess default
SubscriptionPrivateValues default
<Limit Create-Job Print-Job Print-URI Validate-Job>
AuthType Default
Order deny,allow
</Limit>
<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 Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
AuthType Default
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit Pause-Printer Resume-Printer 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 Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit Cancel-Job CUPS-Authenticate-Job>
AuthType Default
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit All>
Order deny,allow
</Limit>
</Policy>
|
|
|
09-22-2014, 10:26 AM
|
#11
|
Member
Registered: Dec 2013
Location: NJ / USA
Distribution: Slackware 64 -Current
Posts: 232
Rep:
|
I use loacalhost:631 to set up my cups on slackware current. My wife's windows 8.1 is able to print to my slackware desktop that has a HP AIO printer hooked up via USB. Only people on my local network are allowed to print. Printing VIA internet is blocked. Hope it helps.
Code:
#>cat cupsd.conf
LogLevel warn
SystemGroup sys root
Port 631
Listen /var/run/cups/cups.sock
Browsing On
BrowseOrder allow,deny
BrowseAllow all
BrowseRemoteProtocols CUPS
BrowseAddress @LOCAL
BrowseLocalProtocols CUPS
DefaultAuthType Basic
WebInterface Yes
<Location />
Order allow,deny
Allow @LOCAL
</Location>
<Location /admin>
Order allow,deny
</Location>
<Location /admin/conf>
AuthType Default
Require user @SYSTEM
Order allow,deny
</Location>
<Policy default>
JobPrivateAccess default
JobPrivateValues default
SubscriptionPrivateAccess default
SubscriptionPrivateValues default
<Limit Create-Job Print-Job Print-URI Validate-Job>
Order deny,allow
</Limit>
<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 Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default CUPS-Get-Devices>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit Pause-Printer Resume-Printer 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 Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit Cancel-Job CUPS-Authenticate-Job>
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit All>
Order deny,allow
</Limit>
</Policy>
<Policy authenticated>
JobPrivateAccess default
JobPrivateValues default
SubscriptionPrivateAccess default
SubscriptionPrivateValues default
<Limit Create-Job Print-Job Print-URI Validate-Job>
AuthType Default
Order deny,allow
</Limit>
<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 Cancel-My-Jobs Close-Job CUPS-Move-Job CUPS-Get-Document>
AuthType Default
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class CUPS-Delete-Class CUPS-Set-Default>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit Pause-Printer Resume-Printer 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 Cancel-Jobs CUPS-Accept-Jobs CUPS-Reject-Jobs>
AuthType Default
Require user @SYSTEM
Order deny,allow
</Limit>
<Limit Cancel-Job CUPS-Authenticate-Job>
AuthType Default
Require user @OWNER @SYSTEM
Order deny,allow
</Limit>
<Limit All>
Order deny,allow
</Limit>
</Policy>
|
|
|
09-22-2014, 11:11 AM
|
#12
|
Senior Member
Registered: Oct 2003
Location: Northeastern Michigan, where Carhartt is a Designer Label
Distribution: Slackware 32- & 64-bit Stable
Posts: 3,541
|
If you've got H-P printers, it's easy as pie: set a fixed-IP address in the printer, then on each Slackware box run hp-setup and you're done. Multiple boxes can access the printer via the LAN and there won't be any problems with simultaneous access (the printer will just tell CUPS to wait if it's busy). You might want to add the printer name and IP address to /etc/hosts on each box (hey, it's a one-time thing, no big deal) or you can fiddle with DHCP (but use a fixed-IP address and name).
A print server is only a little more difficult but I don't think it's necessary in a small network, just as easy to do each box and be done with it.
The great thing, truly great, is that H-P provides HPLIP for pretty much everything they make and in my experience it's simple and reliable to simply use hp-setup to configure CUPS; you don't have to do anything but remember the IP address and type it. HPLIP does all the rest for you.
|
|
|
09-22-2014, 11:24 AM
|
#13
|
MLED Founder
Registered: Jun 2011
Location: Montpezat (South France)
Distribution: CentOS, OpenSUSE
Posts: 3,453
Original Poster
|
Quote:
Originally Posted by tronayne
If you've got H-P printers, it's easy as pie: set a fixed-IP address in the printer, then on each Slackware box run hp-setup and you're done. Multiple boxes can access the printer via the LAN and there won't be any problems with simultaneous access (the printer will just tell CUPS to wait if it's busy). You might want to add the printer name and IP address to /etc/hosts on each box (hey, it's a one-time thing, no big deal) or you can fiddle with DHCP (but use a fixed-IP address and name).
|
Or even better: use Dnsmasq on the server. No IP mess.
|
|
|
09-22-2014, 03:49 PM
|
#14
|
LQ Guru
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,905
|
Quote:
If you've got H-P printers, it's easy as pie: set a fixed-IP address in the printer, then on each Slackware box run hp-setup and you're done. Multiple boxes can access the printer via the LAN and there won't be any problems with simultaneous access (the printer will just tell CUPS to wait if it's busy). You might want to add the printer name and IP address to /etc/hosts on each box (hey, it's a one-time thing, no big deal) or you can fiddle with DHCP (but use a fixed-IP address and name).
|
Yes, network attached printers are very easy to setup, HP or otherwise. (Although in this case, the OP is referring to a shared 'local' printer available on a LAN via a CUPS server.)
I use avahai to access my network printers by their hostname (discovered as <hostname>.local), so no need to edit /etc/hosts or DNS etc.
|
|
|
All times are GMT -5. The time now is 01:45 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|