Search found 5 matches

by kormikez
Sun Nov 24, 2013 9:41 am
Forum: Other Issues
Topic: Problems with USB printer and hotplug script
Replies: 7
Views: 11372

Re: Problems with USB printer and hotplug script

I made a workaround script for you: #!/bin/sh DRIVER_FILE=/usr/lib/sihp1018.dl if [ ! -f /tmp/printer_status ]; then echo 1 > /tmp/printer_status fi old_status=$(cat /tmp/printer_status); grep LaserJet /proc/bus/usb/devices >/dev/null; echo $? > /tmp/printer_status new_status=$(cat /tmp/printer_stat...
by kormikez
Wed Sep 25, 2013 11:19 am
Forum: Other Issues
Topic: Problems with USB printer and hotplug script
Replies: 7
Views: 11372

Re: Problems with USB printer and hotplug script

On some forum I saw a script code with such device check: if [ "$PRODUCT" = "3f0/2b17/100" -a "$ACTION" = "add" ]; then for i in $(seq 30); do if [ -c $DEVICE ]; then cat $FIRMWARE > $DEVICE exit fi sleep 1 done fi I was wondering, what is the actual reason fo...
by kormikez
Sun Sep 15, 2013 7:18 am
Forum: Other Issues
Topic: Problems with USB printer and hotplug script
Replies: 7
Views: 11372

Re: Problems with USB printer and hotplug script

Hey, Initially I had somehow similar issue. The printer was only working when I restarted the router, but if I turned the printer off and than back on (or unplugged for a while) - it did not work until I did driver cat to lp0, as if the hotplug.d script was not being executed at all. I believe I sol...
by kormikez
Sun Sep 15, 2013 7:07 am
Forum: Hardware / Installation Issues
Topic: HP LaserJet 1018 prints infinite number of copies
Replies: 3
Views: 4696

Re: HP LaserJet 1018 prints infinite number of copies

leoforti wrote:Turn off "bidirectional support" in the printer propierties
Thanks a lot leoforti! This helped indeed :)

Regarding your issue, I will have a look in a minute and try to help as much as I can.
by kormikez
Mon Sep 02, 2013 11:57 am
Forum: Hardware / Installation Issues
Topic: HP LaserJet 1018 prints infinite number of copies
Replies: 3
Views: 4696

HP LaserJet 1018 prints infinite number of copies

Hey everyone, I've flashed my TL-WDR3600 with Gargoyle 1.5.10 a couple of days ago. Working on this system for the first time, I was very positive about it - until I started struggling with the USB printing :) Making the printer working at all maybe wasn't that trivial, however with uncle Google's h...