Enige tijd geleden heb ik hier al een topic over gehad, dat het printen van een Windows XP op een Linux machine met cups en samba ERG langzaam gaat. Dit heeft zichzelf toen vanzelf opgelost na enig installeren en deinstalleren. Nu is het probleem helaas weer terug.
cupsd.conf
printers.conf
smb.conf
Dit zijn al mijn scripts die ik gebruik. Heeft iemand anders dit probleem toevallig ook en weet die hoe dit op te lossen is?
cupsd.conf
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| LogLevel debug ServerBin /usr/local/lib/cups ServerRoot /usr/local/etc/cups Port 631 <Location /> AuthType None Order Deny,Allow Deny From All Allow From 127.0.0.1 </Location> <Location /admin> AuthType Basic AuthClass System Order Deny,Allow Deny From All Allow From 127.0.0.1 </Location> Browsing On BrowseProtoculs cups |
printers.conf
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
| # Printer configuration file for CUPS v1.1.21 # Written by cupsd on Mon 18 Oct 2004 06:27:35 PM CEST <DefaultPrinter HPLaserJet> Info HP LaserJet 1320 Location Linux DeviceURI parallel:/dev/lp0 State Idle Accepting Yes JobSheets none none QuotaPeriod 0 PageLimit 0 KLimit 0 </Printer> |
smb.conf
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| [global] printcap name = cups load printers = yes printing = cups lock directory = /var/lock/samba guest account = nobody log file = /var/log/samba/%m.log max log size = 50 security = share encrypt passwords = yes smb passwd file = /etc/samba/smbpasswd unix password sync = Yes passwd program = /usr/bin/passwd %u passwd chat = *New*password* %n\n *Retype*new*password* %n\n *passwd:*all*authentication*tokens*updated*successfully* pam password change = yes obey pam restrictions = yes socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192 dns proxy = no [printers] comment = All Printers path = /tmp printer = HPLaserJet browseable = yes public = yes guest ok = yes writable = yes printable = yes create mode = 0700 use client driver = yes print command = lpr -P%p -o raw %s -r lpq command = lpstat -o %p lprm command = cancel %p-%j |
Dit zijn al mijn scripts die ik gebruik. Heeft iemand anders dit probleem toevallig ook en weet die hoe dit op te lossen is?