View previous topic :: View next topic |
Author |
Message |
Bitruder Tux's lil' helper

Joined: 04 Jun 2004 Posts: 120
|
Posted: Mon Jun 07, 2004 10:46 pm Post subject: Printing to Windows Printer via SAMBA |
|
|
I followed the guide in the forums, and I tried a few guides I found with google but I always end up at the same result. I add the printer to cups, send a job to the printer, but it never prints. Here's the log output (I don't know how to put it in debug mode. Anyone know how?)
Code: |
I [07/Jun/2004:18:41:58 -0400] Job 11 queued on 'HPDeskJet932C' by 'root'.
I [07/Jun/2004:18:41:58 -0400] Started filter /usr/lib/cups/filter/texttops (PID 15633) for job 11.
I [07/Jun/2004:18:41:58 -0400] Started filter /usr/lib/cups/filter/pstops (PID 15634) for job 11.
I [07/Jun/2004:18:41:58 -0400] Started filter /usr/lib/cups/filter/foomatic-rip (PID 15635) for job 11.
I [07/Jun/2004:18:41:58 -0400] Started backend /usr/lib/cups/backend/smb (PID 15636) for job 11.
E [07/Jun/2004:18:41:58 -0400] PID 15635 stopped with status 3!
I [07/Jun/2004:18:41:58 -0400] Hint: Try setting the LogLevel to "debug" to find out more. |
|
|
Back to top |
|
 |
sak102010 Tux's lil' helper


Joined: 08 Jun 2003 Posts: 82
|
Posted: Tue Jun 08, 2004 12:01 am Post subject: |
|
|
You can set the log level in your smb.conf. From the smb.conf manpage ...
Code: |
log level (G)
The value of the parameter (a astring) allows the debug level
(logging level) to be specified in the smb.conf file. This
parameter has been extended since the 2.2.x series, now it allow
to specify the debug level for multiple debug classes. This is
to give greater flexibility in the configuration of the system.
The default will be the log level specified on the command line
or level zero if none was specified.
No default
Example: log level = 3 passdb:5 auth:10 winbind:2
|
You can also set the debug level when you start one of the daemons with the --debug flag ...
Code: |
root # smbd --debug 10
root # nmbd --debug 4
root # winbindd --debug 10
|
Either way ups the output in your log files for the particular service. _________________ Thanks,
Sak |
|
Back to top |
|
 |
|