summaryrefslogtreecommitdiff
path: root/docs/textdocs/Printing.txt
diff options
context:
space:
mode:
authorJohn Terpstra <jht@samba.org>1998-03-01 11:10:04 +0000
committerJohn Terpstra <jht@samba.org>1998-03-01 11:10:04 +0000
commitb4622c8d7bff97a6391cb10a44bcf265a8635370 (patch)
tree7b1ea2f60a5842f6b4a1ed8c41658ddc6c165e61 /docs/textdocs/Printing.txt
parent45dab9f06594777e96be5f4556e6bb386f68f309 (diff)
downloadsamba-b4622c8d7bff97a6391cb10a44bcf265a8635370.tar.gz
samba-b4622c8d7bff97a6391cb10a44bcf265a8635370.tar.bz2
samba-b4622c8d7bff97a6391cb10a44bcf265a8635370.zip
Adding example config info for the ISC DHCP Server, An MS Knowledge Base article contributed by an anonymous person, and adding Caldera Inc. printing config notes to Printing.txt.
(This used to be commit 914b1626178aab30da07a14f14d04703106b95c4)
Diffstat (limited to 'docs/textdocs/Printing.txt')
-rw-r--r--docs/textdocs/Printing.txt38
1 files changed, 37 insertions, 1 deletions
diff --git a/docs/textdocs/Printing.txt b/docs/textdocs/Printing.txt
index 8be5af9ada..98efbb5408 100644
--- a/docs/textdocs/Printing.txt
+++ b/docs/textdocs/Printing.txt
@@ -1,5 +1,5 @@
!==
-!== Printing.txt for Samba release 1.9.18 08 Jan 1998
+!== Printing.txt for Samba release 1.9.18p3 19 Feb 1998
!==
Contributor: Unknown <samba-bugs@samba.anu.edu.au>
Date: Unknown
@@ -94,3 +94,39 @@ printer.
If the above debug tips don't help, then maybe you need to bring in
the bug gun, system tracing. See Tracing.txt in this directory.
+=====================================================================
+From Caldera Inc., the following documentation has been contributed:
+
+
+8.6 Setting up a raw SAMBA printer.
+
+Note: this is not a guide on setting up SAMBA. It merely addresses creating a printer configuration that will allow the output of regular (i.e. not PostScript) Windows printer drivers to print through SAMBA.
+
+Regular Windows printer drivers can be used to print via SAMBA, but you must set up a raw printer entry in "/etc/printcap" to accomplish this. Also, a print command will need to be specified in "/etc/smb.conf" that forces binary printing.
+
+The best way to start is to use printtool under X to create a new entry specifically for this printer. All you really need for it to do is create the necessary directories and set the permissions correctly, so don't worry about setting up a filter for a specific printer. Filters are not going to be used at all for this entry.
+
+Next, go into "/etc" and edit the printcap entry you just created, changing it to look like this (if you named it something other than raw, the entry name and spool directory should be changed here to match):
+
+raw:\
+:rw:sh:
+:lp=/dev/lp1
+:sd=/var/spool/lpd/raw
+:fx=flp
+
+When this is done and saved, edit the section of the smb.conf file that applies to the printer. Make sure the name of the section (enclosed in brackets) matches the name of the raw printer you just set up, then go down a line or two and add this line:
+
+print command = lpr -b -P%p %s
+
+Save the file, change to "/etc/rc.d/init.d", and type the following commands
+to restart the necessary daemons:
+
+./lpd stop
+./lpd start
+./smb stop
+./smb start
+
+At this point you should be ready to use the various printer drivers on
+your Windows clients for printing.
+=============================================================================
+