====== CUPS Printing ======
===== Install Printer Driver (example: Brother DCP-1510 =====
- Download the [[http://support.brother.com/g/b/downloadlist.aspx?c=eu_ot&lang=en&prod=dcp1510_eu_as&os=128#SelectLanguageType-625_0_1|Driver]]
- Open a terminal window and go to the directory you downloaded the file to in the last step.
- Extract the downloaded file:$ gunzip linux-brprinter-installer-*.*.*-*.gz
- Run:# bash linux-brprinter-installer-*.*.*-*
- The driver installation will start. Follow the installation screen directions. When you see the message "Will you specify the DeviceURI ?", choose **N**(No) for USB connected printers.
===== CUPS Installation and Settings =====
- Install CUPS:# apt-get install cups
- Allow connections from other machines on the network:# vim /etc/cups/cupsd.conf
AuthType None
Order Deny,Allow
Deny from None
Allow from All
- Restart CUPS:# /etc/init.d/cups restart
===== Samba settings =====
- Enable CUPS printing:# vim /etc/samba/smb.conf
printing = cups
printcap name = cups
- Restart Samba:# /etc/init.d/samba restart
===== Links =====
* [[http://www.tldp.org/HOWTO/Debian-and-Windows-Shared-Printing/sharing_with_windows.html|Sharing Printers With Windows PCs]]
* [[https://thehomeserverhandbook.com/2012/02/22/sharing_scanner/|Sharing a scanner over the network with Linux]]
* [[https://help.ubuntu.com/community/SaneDaemonTutorial|SaneDaemonTutorial]]