Hello,
I'm printing some labels on a Zebra TLP-2844 printer, and been doing it fine on windows by sending the EPL instructions to the shared USB printer, as following:
type Label.prn > \my-pc\zebra
and it seems to work with serial ports to with
type Label.prn > COM1
Now i'm trying to to the same on linux, but it's getting really hard! My first guess was:
cat Label.prn | /dev/bus/usb/005/002
since my printer is on bus 005, device 002 (checked it with lsusb command) but it doesn't work at all, as i get a bad
bash: /dev/bus/usb/005/002: Permission denied
Any guesses?