meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
hw:nsa310:p910nd [2020/09/03 21:18]
niziak
hw:nsa310:p910nd [2021/06/12 10:20] (current)
niziak
Line 3: Line 3:
 Use Zyxel NAS with Debian as print server for USB printer. Use Zyxel NAS with Debian as print server for USB printer.
 With Samsung ML printer. With Samsung ML printer.
 +
 +===== Checks =====
 <code bash> <code bash>
 # dmesg # dmesg
Line 17: Line 19:
 crw-rw---- 1 root lp 180, 0 Sep  3 21:37 /​dev/​usb/​lp0 crw-rw---- 1 root lp 180, 0 Sep  3 21:37 /​dev/​usb/​lp0
 </​code>​ </​code>​
 +
 +===== Installation =====
  
 <code bash> <code bash>
Line 41: Line 45:
 </​code>​ </​code>​
  
 +===== Linux Client =====
  
 +[[https://​openwrt.org/​docs/​guide-user/​services/​print_server/​p910ndprinterserver#​manual_method]]
 +
 +===== Windows Client =====
 +
 +[[https://​openwrt.org/​docs/​guide-user/​services/​print_server/​p910nd.server#​windows_clients|Windows clients]]
 +
 +====== Issues ======
 +
 +When addign network printer usign CUPS web interface:
 +
 +<​code>​
 +Unable to add printer:
 +
 +    Bad device-uri " socket://​192.168.179.2:​9100"​.
 +
 +</​code>​
 +
 +<file | /​var/​log/​cups/​error_log>​
 +E [03/​Sep/​2020:​21:​24:​24 +0200] [Client 2190] Returning IPP client-error-not-possible for CUPS-Add-Modify-Printer (ipp://​localhost/​printers/​ML-1640_NET_ZYXEL) from localhost.
 +</​file>​
 +
 +Looks like permission problem.
 +Adding printer using GUI works well:
 +<code bash>
 +system-config-printer
 +</​code>​
 +
 +Possible issue: missing slash in socket address: ​
 +<​code>​
 +BAD: socket://​192.168.179.2:​9100
 +OK: socket://​192.168.179.2:​9100/​
 +</​code>​