summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-10-23 23:49:27 +0000
committerAndrew Tridgell <tridge@samba.org>1996-10-23 23:49:27 +0000
commit99ad4508a086205a7801e88a2f74ad6fe839431f (patch)
tree007a18ad62ea83db1a285982fef4d378166330b5
parentdc0d4d2efbd27c8acac9d8a87248a0ee07003acc (diff)
downloadsamba-99ad4508a086205a7801e88a2f74ad6fe839431f.tar.gz
samba-99ad4508a086205a7801e88a2f74ad6fe839431f.tar.bz2
samba-99ad4508a086205a7801e88a2f74ad6fe839431f.zip
- fixed listproc mail address in faq
- added printer driver section to faq (This used to be commit b8c397df87401d53315d472917802e47a9b11bef)
-rw-r--r--docs/samba.faq48
1 files changed, 44 insertions, 4 deletions
diff --git a/docs/samba.faq b/docs/samba.faq
index b00e541966..c275b31147 100644
--- a/docs/samba.faq
+++ b/docs/samba.faq
@@ -219,8 +219,8 @@ http://samba.canberra.edu.au/pub/samba/samba.html, under which there is a
comprehensive survey of Samba users. Another useful resource is the hypertext
archive of the Samba mailing list.
-Send email to listproc@anu.edu.au. Make sure the subject line is blank, and
-include the following two lines in the body of the message:
+Send email to listproc@samba.anu.edu.au. Make sure the subject line is
+blank, and include the following two lines in the body of the message:
subscribe samba Firstname Lastname
subscribe samba-announce Firstname Lastname
@@ -234,8 +234,8 @@ single message containing all the messages that have been received by the list
since the last time and sends a copy of this message to all subscribers.
If you stop being interested in Samba, please send another email to
-listproc@anu.edu.au. Make sure the subject line is blank, and include the
-following two lines in the body of the message:
+listproc@samba.anu.edu.au. Make sure the subject line is blank, and
+include the following two lines in the body of the message:
unsubscribe samba
unsubscribe samba-announce
@@ -743,6 +743,46 @@ To work around the problem, try disconnecting from your Samba server
and then reconnecting to it; or upgrade your Samba server to
1.9.16alpha10 or later.
+
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+* 7: How do I set the printer driver name correctly?
+
+Question:
+> On NT, I opened "Printer Manager" and "Connect to Printer".
+> Enter "\\ptdi270\ps1" in the box of printer. I got the
+> following error message:
+>
+> You do not have sufficient access to your machine
+> to connect to the selected printer, since a driver
+> needs to be installed locally.
+
+Answer:
+
+In the more recent versions of Samba you can now set the "printer
+driver" in smb.conf. This tells the client what driver to use. For
+example, I have:
+
+ printer driver = HP LaserJet 4L
+
+and NT knows to use the right driver. You have to get this string
+exactly right.
+
+To find the exact string to use, you need to get to the dialog box in
+your client where you select which printer driver to install. The
+correct strings for all the different printers are shown in a listbox
+in that dialog box.
+
+You could also try setting the driver to NULL like this:
+
+ printer driver = NULL
+
+this is effectively what older versions of Samba did, so if that
+worked for you then give it a go. If this does work then let me know
+and I'll make it the default. Currently the default is a 0 length
+string.
+
+
+
===============================================================================
SECTION FIVE: Specific client application problems
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~