Difference between revisions of "Network Printer"

From Linuxintro
imported>ThorstenStaerk
 
imported>ThorstenStaerk
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
* [[Set up a print server using cups]]
 
* [[Set up a print server using cups]]
 
* [[Set up a network printer using cups]]
 
* [[Set up a network printer using cups]]
 +
 +
= Network printer TroubleShooting =
 +
 +
== Cannot print with FireFox ==
 +
'''Symptom:''' You can print with kwrite. However, when trying to print with FireFox, the Print button is greyed out. Depending on FireFox' version, there is an information about missing printer information.
 +
 +
'''Reason:''' Even if you only specify the cups server's IP, not its hostname, the cups client will try to reach the cups server via its name during the client-/server dialog.
 +
 +
'''Solution:''' Make sure your cups client can ping the cups server under its hostname. For example, if the cups server is venus.universe with an IP address of 192.168.0.5, add a line to /etc/hosts on the cups client:
 +
192.168.0.5 venus.universe venus
 +
 +
= See also =
 +
* https://bbs.archlinux.org/viewtopic.php?id=86710

Latest revision as of 16:01, 4 December 2011

Network printer TroubleShooting

Cannot print with FireFox

Symptom: You can print with kwrite. However, when trying to print with FireFox, the Print button is greyed out. Depending on FireFox' version, there is an information about missing printer information.

Reason: Even if you only specify the cups server's IP, not its hostname, the cups client will try to reach the cups server via its name during the client-/server dialog.

Solution: Make sure your cups client can ping the cups server under its hostname. For example, if the cups server is venus.universe with an IP address of 192.168.0.5, add a line to /etc/hosts on the cups client:

192.168.0.5 venus.universe venus

See also