-
I'm trying to connect an old Zebra Z4000 with LPrint but am having problems getting it to work. The printer is connected with a It also doesn't work when I try to add it with
I'm runing it on a Rapberry pi (Raspbian) where I build So my question is if this is expected to work and, if not, where I could add it so it is recognized in LPrint? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There isn't anything special about this, but you generally need to run lprint as root ("sudo lprint devices") for USB access on Linux. |
Beta Was this translation helpful? Give feedback.
I solved it, apparently it wasn't being built with support for USB devices,
configure --enable-libusb
before building helped.For someone else that is troubleshooting something similar, this is how I found the problem:
libusb_get_device_list
.configure --enable-debug-printfs
and saw that I didn't get the debug messages thatlibusb_get_device_list
would generate and this suggested that it wasn't active.configure --help
showed a list with options I could enable and--enable-libusb
workedBefore doing that, I verified that the USB device didn't use the
usblp
subsystem withudeva…