Re: Usb printers take the same port deterministically?

2011-06-04 Thread Warren Block
On Sat, 4 Jun 2011, Scott Gasch wrote: Thanks, Warren.  Works great, mostly :) I actually need the "unlpt*" device because of publishing the raw printers.  Hooking the attach/detach of those device names directly did not work.  Adding an action to the "ulpt" device does work... but I then ran i

Re: Usb printers take the same port deterministically?

2011-06-04 Thread Scott Gasch
action "ln -s /dev/unlpt1 /dev/unlpt-epson"; }; detach 20 { device-name "ulpt[0-9]"; match "vendor" "0x04b8"; # Epson match "product" "0x0007"; # Photostylus R800 action "rm -f /dev/ulpt-epson";

Re: Usb printers take the same port deterministically?

2011-06-04 Thread Warren Block
On Sat, 4 Jun 2011, Scott Gasch wrote: Hi, I have two usb printers on my freebsd machine and I'm using cups. One of the things I've done is publish a raw (no driver) printer for each of them and use that to share them with other machines in the house that have drivers. My probl

Usb printers take the same port deterministically?

2011-06-04 Thread Scott Gasch
Hi, I have two usb printers on my freebsd machine and I'm using cups. One of the things I've done is publish a raw (no driver) printer for each of them and use that to share them with other machines in the house that have drivers. My problem is that every once in a while, when I bo

Re: CUPS, USB printers & "Permission Denied"

2006-07-08 Thread Anthony Agelastos
On Jul 8, 2006, at 2:19 PM, Rico Secada wrote: On Sat, 8 Jul 2006 12:43:45 -0400 Anthony Agelastos <[EMAIL PROTECTED]> wrote: Hi, I just installed cups from ports and had a similar problem with printing. Normally I haven't got any problems. The printer is a HL-1430 connected to USB and the

Re: CUPS, USB printers & "Permission Denied"

2006-07-08 Thread Rico Secada
On Sat, 8 Jul 2006 12:43:45 -0400 Anthony Agelastos <[EMAIL PROTECTED]> wrote: Hi, I just installed cups from ports and had a similar problem with printing. Normally I haven't got any problems. The printer is a HL-1430 connected to USB and the error I got was: 'Unable to open USB device "usb:/

Re: CUPS, USB printers & "Permission Denied"

2006-07-08 Thread Anthony Agelastos
On Jun 29, 2006, at 6:51 PM, Jan-Espen Pettersen wrote: I just tried /dev/unltp0 and I have the same issues. Basically, I killed all of the jobs, made your change, submitted a test page, watched as nothing happened (it didn't display any messages in the web interface), did a /usr/local/etc

Re: CUPS, USB printers & "Permission Denied"

2006-07-01 Thread John Nielsen
On Saturday 01 July 2006 12:40, Jan-Espen Pettersen wrote: > > The problem is that read operations on usb printers might just > > block/hang with no data from the printer (?). ulpt doesn't have > > non-blocking I/O, so I've made a patch that simply times out read

Re: CUPS, USB printers & "Permission Denied"

2006-07-01 Thread Jan-Espen Pettersen
> The problem is that read operations on usb printers might just > block/hang with no data from the printer (?). ulpt doesn't have > non-blocking I/O, so I've made a patch that simply times out read > operations, and disables further reads if it detects a blocking/st

Re: CUPS, USB printers & "Permission Denied"

2006-07-01 Thread Jan-Espen Pettersen
om the > printer, but at least it can print. Be warned about unknown side effects. :) > > Jan-Espen Pettersen > > The problem is that read operations on usb printers might just block/hang with no data from the printer (?). ulpt doesn't have non-blocking I/O, so I've made a

Re: CUPS, USB printers & "Permission Denied"

2006-06-30 Thread Rainer Heesen -------
I have a Minolta PagePro 1350 printer. When I use the workaround I get the error 'raw printers cannot use file: devices!' Is there another workaround? [EMAIL PROTECTED] ~$ lpstat -d -p -t system default destination: Minolta printer Minolta disabled since Fri Jun 30 17:14:11 2006 - Raw pr

Re: CUPS, USB printers & "Permission Denied"

2006-06-29 Thread Nicolas Blais
> > I found that the usb backend stalled here before actually doing any > work. Before I've done any actual debugging of the backend, I suspect > that it is being blocked on a status read attempt, though this is only > my current guess. > > Here is a workaround: > > In printers.conf () you will pro

Re: CUPS, USB printers & "Permission Denied"

2006-06-29 Thread Jan-Espen Pettersen
> I just tried /dev/unltp0 and I have the same issues. Basically, I > killed all of the jobs, made your change, submitted a test page, > watched as nothing happened (it didn't display any messages in the web > interface), did a /usr/local/etc/rc.d/cupsd restart, killed the test > page, then resubm

Re: CUPS, USB printers & "Permission Denied"

2006-06-27 Thread Micah
Anthony Agelastos wrote: On Jun 25, 2006, at 11:37 PM, Nicolas Blais wrote: On Sunday 25 June 2006 23:32, John Nielsen wrote: On Sunday 25 June 2006 20:04, Anthony Agelastos wrote: On Jun 25, 2006, at 7:35 PM, John Nielsen wrote: On Sunday 25 June 2006 19:28, Anthony Agelastos wrote: I upd

Re: CUPS, USB printers & "Permission Denied"

2006-06-27 Thread Anthony Agelastos
On Jun 25, 2006, at 11:37 PM, Nicolas Blais wrote: On Sunday 25 June 2006 23:32, John Nielsen wrote: On Sunday 25 June 2006 20:04, Anthony Agelastos wrote: On Jun 25, 2006, at 7:35 PM, John Nielsen wrote: On Sunday 25 June 2006 19:28, Anthony Agelastos wrote: I updated CUPS and I cannot pri

Re: CUPS, USB printers & "Permission Denied"

2006-06-27 Thread Anthony Agelastos
OOPS! I apologize to everyone on this list for not compressing my error_log file and wasting your time and bandwidth downloading it. On Jun 27, 2006, at 7:43 PM, Anthony Agelastos wrote: On Jun 25, 2006, at 11:37 PM, Nicolas Blais wrote: On Sunday 25 June 2006 23:32, John Nielsen wrote: O

Re: CUPS, USB printers & "Permission Denied"

2006-06-26 Thread Sergey Akifyev
On вс, 2006-06-25 at 23:32 -0400, John Nielsen wrote: > On Sunday 25 June 2006 20:04, Anthony Agelastos wrote: > > On Jun 25, 2006, at 7:35 PM, John Nielsen wrote: > > > On Sunday 25 June 2006 19:28, Anthony Agelastos wrote: > > >> I updated CUPS and I cannot print to my USB laser printer. The web

Re: CUPS, USB printers & "Permission Denied"

2006-06-26 Thread John Nielsen
On Monday 26 June 2006 00:15, Micah wrote: > John Nielsen wrote: > > On Sunday 25 June 2006 20:04, Anthony Agelastos wrote: > >> On Jun 25, 2006, at 7:35 PM, John Nielsen wrote: > >>> On Sunday 25 June 2006 19:28, Anthony Agelastos wrote: > I updated CUPS and I cannot print to my USB laser pri

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread Anthony Agelastos
On Jun 25, 2006, at 9:05 PM, Micah wrote: Anthony Agelastos wrote: Hello and thank you for the very quick reply. On Jun 25, 2006, at 7:34 PM, albi wrote: On Sun, 25 Jun 2006 19:28:35 -0400 "Anthony Agelastos" <[EMAIL PROTECTED]> wrote: I updated CUPS and I cannot print to my USB laser print

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread Micah
John Nielsen wrote: On Sunday 25 June 2006 20:04, Anthony Agelastos wrote: On Jun 25, 2006, at 7:35 PM, John Nielsen wrote: On Sunday 25 June 2006 19:28, Anthony Agelastos wrote: I updated CUPS and I cannot print to my USB laser printer. The web interface shows the following: hp_LaserJet_1160

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread Nicolas Blais
On Sunday 25 June 2006 23:32, John Nielsen wrote: > On Sunday 25 June 2006 20:04, Anthony Agelastos wrote: > > On Jun 25, 2006, at 7:35 PM, John Nielsen wrote: > > > On Sunday 25 June 2006 19:28, Anthony Agelastos wrote: > > >> I updated CUPS and I cannot print to my USB laser printer. The web > >

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread John Nielsen
On Sunday 25 June 2006 20:04, Anthony Agelastos wrote: > On Jun 25, 2006, at 7:35 PM, John Nielsen wrote: > > On Sunday 25 June 2006 19:28, Anthony Agelastos wrote: > >> I updated CUPS and I cannot print to my USB laser printer. The web > >> interface shows the following: > >> > >> hp_LaserJet_1160

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread Micah
Anthony Agelastos wrote: On Jun 25, 2006, at 9:05 PM, Micah wrote: Anthony Agelastos wrote: Hello and thank you for the very quick reply. On Jun 25, 2006, at 7:34 PM, albi wrote: On Sun, 25 Jun 2006 19:28:35 -0400 "Anthony Agelastos" <[EMAIL PROTECTED]> wrote: I updated CUPS and I cannot p

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread Micah
Anthony Agelastos wrote: Hello and thank you for the very quick reply. On Jun 25, 2006, at 7:34 PM, albi wrote: On Sun, 25 Jun 2006 19:28:35 -0400 "Anthony Agelastos" <[EMAIL PROTECTED]> wrote: I updated CUPS and I cannot print to my USB laser printer. The web interface shows the following:

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread Anthony Agelastos
Hello and thank you for your reply. On Jun 25, 2006, at 7:47 PM, Garrett Cooper wrote: Would you reply with the output you get when you run "ls -l /dev/ ulpt0" please? Thanks, %ls -l /dev/ulpt0 crw-r--r-- 1 root operator0, 68 Jun 25 19:01 /dev/ulpt0 Thank you for your help. Is this a

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread albi
On Sun, 25 Jun 2006 19:28:35 -0400 "Anthony Agelastos" <[EMAIL PROTECTED]> wrote: > I updated CUPS and I cannot print to my USB laser printer. The web > interface shows the following: > > hp_LaserJet_1160Le (Default Printer) "Unable to open USB device > "usb:/dev/ulpt0": Permission denied" >

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread Nicolas Blais
On Sunday 25 June 2006 19:28, Anthony Agelastos wrote: > Hello all, > > I updated CUPS and I cannot print to my USB laser printer. The web > interface shows the following: > > hp_LaserJet_1160Le (Default Printer) "Unable to open USB device > "usb:/dev/ulpt0": Permission denied" > Description: H

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread Garrett Cooper
Would you reply with the output you get when you run "ls -l /dev/ ulpt0" please? Thanks, -Garrett ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECT

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread John Nielsen
On Sunday 25 June 2006 19:28, Anthony Agelastos wrote: > I updated CUPS and I cannot print to my USB laser printer. The web > interface shows the following: > > hp_LaserJet_1160Le (Default Printer) "Unable to open USB device > "usb:/dev/ulpt0": Permission denied" > Description: Hewlett-Packard

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread Anthony Agelastos
On Jun 25, 2006, at 7:35 PM, John Nielsen wrote: On Sunday 25 June 2006 19:28, Anthony Agelastos wrote: I updated CUPS and I cannot print to my USB laser printer. The web interface shows the following: hp_LaserJet_1160Le (Default Printer) "Unable to open USB device "usb:/dev/ulpt0": Permissio

Re: CUPS, USB printers & "Permission Denied"

2006-06-25 Thread Anthony Agelastos
Hello and thank you for the very quick reply. On Jun 25, 2006, at 7:34 PM, albi wrote: On Sun, 25 Jun 2006 19:28:35 -0400 "Anthony Agelastos" <[EMAIL PROTECTED]> wrote: I updated CUPS and I cannot print to my USB laser printer. The web interface shows the following: hp_LaserJet_1160Le (Defau

CUPS, USB printers & "Permission Denied"

2006-06-25 Thread Anthony Agelastos
Hello all, I updated CUPS and I cannot print to my USB laser printer. The web interface shows the following: hp_LaserJet_1160Le (Default Printer) "Unable to open USB device "usb:/dev/ulpt0": Permission denied" Description: Hewlett-Packard LaserJet 1160Le Location: Den Make and Model: HP Laser

USB Printers

2003-11-02 Thread David Armstrong
Hi, We are currently a Linux shop and have been considering moving to FreeBSD for performance reasons. We (actually I) tried to set up a FreeBSD box but was unable to get my Postscript (Brother HL-5050) USB printer to work and can't seem to find much information about it in the docs. Thanks in

Re: usb printers

2003-03-16 Thread Todd Zimmermann
A little rusty on this but hopefully it will help some. I had a HP 812c running on 4.5 awhile back through usb. Used apsfilter with gimp-print or the HP drivers, but it didn't work the greatest. Could've been a misconfiguration on my part. On redhat 8 on the same comp & printer have had excelle

Re: usb printers

2003-03-16 Thread Mike Meyer
In <[EMAIL PROTECTED]>, Khairil Yusof <[EMAIL PROTECTED]> typed: > Once connected would the device just be something like /dev/usb0 (on > FreeBSD 5) or do you need a usb to parallel converter? There is no > mention of usb printers in the handbook. If the device is recognized

usb printers

2003-03-16 Thread Khairil Yusof
device just be something like /dev/usb0 (on FreeBSD 5) or do you need a usb to parallel converter? There is no mention of usb printers in the handbook. Would appreciate advice and recommendations from others, on what to get and what to avoid. -- Khairil Yusof <[EMAIL PROTECTED]> sign

Re: usb printers not covered in handbook

2003-02-08 Thread chip wiegand
On Sat, 8 Feb 2003 20:13:15 -0600 Mike Meyer <[EMAIL PROTECTED]> wrote: > In <[EMAIL PROTECTED]>, chip wiegand > <[EMAIL PROTECTED]> typed: > > I just bought a new printer, an Epson C62. I'd like to use > > it with the usb rather than parallel cable, but so far no > > go. I am trying to use Apsfi

Re: usb printers not covered in handbook

2003-02-08 Thread Mike Meyer
In <[EMAIL PROTECTED]>, chip wiegand <[EMAIL PROTECTED]> typed: > I just bought a new printer, an Epson C62. I'd like to use > it with the usb rather than parallel cable, but so far no > go. I am trying to use Apsfilter to configure it, but get > this message - > /dev/ulpt0: Device not configured

usb printers not covered in handbook

2003-02-08 Thread chip wiegand
I just bought a new printer, an Epson C62. I'd like to use it with the usb rather than parallel cable, but so far no go. I am trying to use Apsfilter to configure it, but get this message - /dev/ulpt0: Device not configured This device is in /dev, as well as ulpt1 and unlpt0. What do I have to do