CUPS

Il manager di stampa di default per linux, solitamente viene installata una versione senza fronzoli, ma avendo un server senza interfaccia si devono utilizzare alcune gabbole la fonte per maggiori dettagli qui.

  1. sudo apt-get install cupsys cupsys-client
  2. sudo cp /etc/cups/cupsd.conf /etc/cups/cupsd.conf.original
  3. sudo nano /etc/cups/cupsd.conf
# Only listen for connections from the local machine.
#Listen localhost:631
Listen 631
Listen /var/run/cups/cups.sock
Listen 192.168.1.20:631
Listen domostus:631

# Web interface setting...
WebInterface Yes

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

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

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

sudo /etc/init.d/cups restart