You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(6) |
Sep
(111) |
Oct
(63) |
Nov
(64) |
Dec
(116) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(49) |
Feb
(27) |
Mar
(136) |
Apr
(59) |
May
(122) |
Jun
(72) |
Jul
(167) |
Aug
(77) |
Sep
(103) |
Oct
(128) |
Nov
(86) |
Dec
(87) |
2002 |
Jan
(150) |
Feb
(111) |
Mar
(112) |
Apr
(139) |
May
(204) |
Jun
(228) |
Jul
(202) |
Aug
(244) |
Sep
(215) |
Oct
(311) |
Nov
(127) |
Dec
(229) |
2003 |
Jan
(252) |
Feb
(119) |
Mar
(163) |
Apr
(166) |
May
(91) |
Jun
(84) |
Jul
(106) |
Aug
(98) |
Sep
(93) |
Oct
(161) |
Nov
(82) |
Dec
(62) |
2004 |
Jan
(58) |
Feb
(44) |
Mar
(56) |
Apr
(67) |
May
(50) |
Jun
(57) |
Jul
(20) |
Aug
(25) |
Sep
(33) |
Oct
(35) |
Nov
(61) |
Dec
(95) |
2005 |
Jan
(61) |
Feb
(31) |
Mar
(17) |
Apr
(10) |
May
(2) |
Jun
(13) |
Jul
(4) |
Aug
(10) |
Sep
(9) |
Oct
(33) |
Nov
(2) |
Dec
(7) |
2006 |
Jan
(11) |
Feb
(3) |
Mar
(3) |
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Tim W. <tw...@re...> - 2005-06-09 15:54:57
|
Hi, I'm trying to work out whether hp-toolbox ought to be run as root. Is it any user to run it as a user? By the way, it works fantastic as root -- really nice! Tim. */ |
From: Tim W. <tw...@re...> - 2005-06-09 15:02:48
|
On Thu, Jun 09, 2005 at 03:31:12PM +0200, Till Kamppeter wrote: > I use "lpinfo -v" to get available "hp://..." URIs. To associate=20 > /dev/usb/... devices to them, I do "getusbprinterid.pl <device>" and=20 > find the "hp://..." URI which contains the "MODEL" or "MDL" field of the= =20 > detected ID string right after "hp://usb/" and, if available, matches=20 > the serial number. Okay. Well, I think I'll just ship hp-devid along with the Fedora Core printer configuration tool for the time being, since that fits into the existing code more easily. > To determine whether a printer is supported by HPLIP already before > installing/starting HPLIP I match the '<model name=3D"...">' in > /usr/share/hplip/data/xml/models.xml against the "MODEL" or "MDL" > field of the detected ID string. The HPLIP RPM I have made in a way > that /usr/share/hplip/data/xml/models.xml is in a separate RPM and > this separate RPM is always installed. printerdrake installes the > rest of HPLIP when it detects a supported printer. That's clever, but isn't that information already in foomatic? Tim. */ |
From: Till K. <til...@gm...> - 2005-06-09 13:31:24
|
I use "lpinfo -v" to get available "hp://..." URIs. To associate /dev/usb/... devices to them, I do "getusbprinterid.pl <device>" and find the "hp://..." URI which contains the "MODEL" or "MDL" field of the detected ID string right after "hp://usb/" and, if available, matches the serial number. To determine whether a printer is supported by HPLIP already before installing/starting HPLIP I match the '<model name="...">' in /usr/share/hplip/data/xml/models.xml against the "MODEL" or "MDL" field of the detected ID string. The HPLIP RPM I have made in a way that /usr/share/hplip/data/xml/models.xml is in a separate RPM and this separate RPM is always installed. printerdrake installes the rest of HPLIP when it detects a supported printer. Till Tim Waugh wrote: > On Thu, Jun 09, 2005 at 03:10:06PM +0200, Till Kamppeter wrote: > > >>AS HPLIP does not grab the devices permanently, you can also use the >>independent programs >> >>http://www.linuxprinting.org/download/printing/getusbprinterid.pl >> >>or >> >>http://www.linuxprinting.org/download/printing/usb_id_test.c >> >>The code of the Perl version I use in printerdrake of Mandriva Linux. >> >>The programs work with all USB printers, also non-HP printers. > > > Yes, indeed, but that doesn't really help. I would still have to > parse an ID like 'hp:/usb/DESKJET_990C?serial=US05N1J00XLG' to work > out which device to use. > > Much easier would be a program like hp-devid (attached). > > Tim. > */ > > > ------------------------------------------------------------------------ > > #!/usr/bin/env python > # > # Based on HPLIP info.py: > > # (c) Copyright 2003-2004 Hewlett-Packard Development Company, L.P. > # > # This program is free software; you can redistribute it and/or modify > # it under the terms of the GNU General Public License as published by > # the Free Software Foundation; either version 2 of the License, or > # (at your option) any later version. > # > # This program is distributed in the hope that it will be useful, > # but WITHOUT ANY WARRANTY; without even the implied warranty of > # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > # GNU General Public License for more details. > # > # You should have received a copy of the GNU General Public License > # along with this program; if not, write to the Free Software > # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA > # > # Author: Don Welch > # > > > # Std Lib > import sys > import os > import getopt > import re > > sys.path.append ("/usr/share/hplip") > > # Local > from base.g import * > from base import device, service, status, utils > > log.set_level ('none') > > try: > device_uri = sys.argv[1] > except: > device_uri = utils.getInteractiveDeviceURI( "usb" ) > > try: > d = device.Device( None, device_uri, None ) > except Error: > log.error( "Error opening device. Exiting." ) > sys.exit(0) > > try: > s = None > try: > s = service.Service() > except Error: > log.error( "Unable to contact services daemon. Exiting." ) > sys.exit(0) > > try: > data = s.queryDevice( d.device_uri, 0, STATUS_PRINTER_IDLE, False ) > except Error: > log.error( "Device query failed." ) > else: > print data["deviceid"] > > finally: > log.debug( "Closing services..." ) > if s is not None: > s.close() > if d is not None and d.io_state == IO_STATE_HP_OPEN: > d.close() > |
From: Tim W. <tw...@re...> - 2005-06-09 13:14:07
|
On Thu, Jun 09, 2005 at 03:10:06PM +0200, Till Kamppeter wrote: > AS HPLIP does not grab the devices permanently, you can also use the > independent programs > > http://www.linuxprinting.org/download/printing/getusbprinterid.pl > > or > > http://www.linuxprinting.org/download/printing/usb_id_test.c > > The code of the Perl version I use in printerdrake of Mandriva Linux. > > The programs work with all USB printers, also non-HP printers. Yes, indeed, but that doesn't really help. I would still have to parse an ID like 'hp:/usb/DESKJET_990C?serial=US05N1J00XLG' to work out which device to use. Much easier would be a program like hp-devid (attached). Tim. */ |
From: Till K. <til...@gm...> - 2005-06-09 13:10:23
|
AS HPLIP does not grab the devices permanently, you can also use the independent programs http://www.linuxprinting.org/download/printing/getusbprinterid.pl or http://www.linuxprinting.org/download/printing/usb_id_test.c The code of the Perl version I use in printerdrake of Mandriva Linux. The programs work with all USB printers, also non-HP printers. Till Tim Waugh wrote: > Hi, > > I would like to programmatically obtain the IEEE 1284 Device ID of a > device that HPLIP can drive. With HPOJ, I could use the ptal-devid > command to do this. > > I don't mind doing the work on it, but which approach would you > prefer?: > > 1. Separate executable 'hp-devid' that just takes -p/-d options > 2. Additional option for 'hp-info' > > Thanks, > Tim. > */ |
From: Tim W. <tw...@re...> - 2005-06-09 12:54:58
|
Hi, I would like to programmatically obtain the IEEE 1284 Device ID of a device that HPLIP can drive. With HPOJ, I could use the ptal-devid command to do this. I don't mind doing the work on it, but which approach would you prefer?: 1. Separate executable 'hp-devid' that just takes -p/-d options 2. Additional option for 'hp-info' Thanks, Tim. */ |
From: Bertrand C. <Ber...@et...> - 2005-05-18 07:27:26
|
I have just installed the latest Mandriva 10.2, packaged with the new hplip. Well, what could I say, everything works perfectly, printing is 2 times faster thant before (Mandrake 10.0), scanning is allrigth and thanks to the hp-toolbox, I can see the photocard and what is more important the cartridge levels. Configuration for those that wants to know before taking the train: motherborad ASUS A7V8X printer PSC2410 So, for the second time (first time was with my old OfficeJet 710), many thanks to the developpers of the HP Linux team. By the way, installation tooks 2mn under linux, no reboot, and it took more than 35 mn with reboot under windows. No difference between both OS as the matter of printing or scanning speed is concerned. Bertrand |
From: Lars E. <ei...@io...> - 2005-05-04 21:44:22
|
I am hoping to use the scanner/cardreader functions of my psc 1350 all-in-one with freebsd. These functions work flawless with my broken OS, so I would like them to work with the OS I actually use. I obtained the printer functions with a combination of hpijs, cups, and foomatic-filters from the freebsd ports. I have install hpoj, devel/libusb, and sane frontends and backends from the freebsd ports. But ptal-init cannot find the scanner. This is my system (uname -a output) FreeBSD goodwill.io.com 5.4-STABLE FreeBSD 5.4-STABLE #5:\ Mon Apr 25 09:39:03 CDT 2005\ to...@go...:/usr/obj/usr/src/sys/GENERIC i386 The kernel is generic with USB 2.0 enabled. The results below are similar whether or not the printer is plugged into a USB 1 or USB 2 port and whether or not I use the plain-vanilla generic kernel or the one with USB 2 enabled. These appear to be the relevant parts of dmesg usb2: EHCI version 1.0 usb2: companion controllers, 2 ports each: usb0 usb1 usb2: <VIA VT6202 USB 2.0 controller> on ehci0 usb2: USB revision 2.0 uhub2: VIA EHCI root hub, class 9/0, rev 2.00/1.00, addr 1 uhub2: 4 ports with 4 removable, self powered ulpt0: hp psc 1300 series, rev 2.00/1.00, addr 2, iclass 255/204 ulpt0: using bi-directional mode ### printer function found - this works on both usb ports and ### with both kernels. umass0: hp psc 1300 series, rev 2.00/1.00, addr 2 ### evidently umass identifies the scanner functions as a mass storage ### device (which is the right answer for the photo card when in the ### camera, but evidently is not correct for the psc). da0 at umass-sim0 bus 0 target 0 lun 0 da0: <HP 1.00> Removable Direct Access SCSI-2 device da0: 1.000MB/s transfers da0: Attempt to query device size failed: NOT READY, Medium not present (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (da0:umass-sim0:0:0:0): SCSI Status: Check Condition (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 (da0:umass-sim0:0:0:0): Medium not present (da0:umass-sim0:0:0:0): Unretryable error Opened disk da0 -> 6 (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (da0:umass-sim0:0:0:0): SCSI Status: Check Condition (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 (da0:umass-sim0:0:0:0): Medium not present (da0:umass-sim0:0:0:0): Unretryable error Opened disk da0 -> 6 (da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0 0 0 0 0 0 (da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error (da0:umass-sim0:0:0:0): SCSI Status: Check Condition (da0:umass-sim0:0:0:0): NOT READY asc:3a,0 (da0:umass-sim0:0:0:0): Medium not present (da0:umass-sim0:0:0:0): Unretryable error Opened disk da0 -> 6 ### attached as a mass storage device at da0, umass continues to ### get wrong answers for the psc 1350 ### I get similar messages whether or not a photocard is in the ### 1350, whether or not a document is loaded in the scanner, ### and whether or not the 1350 is recently powered up. I get a similar set of messages when ptal-init probes /dev/ad0 . -- Lars Eighner ei...@io... http://www.larseighner.com/index.html 8800 N IH35 APT 1191 AUSTIN TX 78753-5266 |
From: tom p. <to...@am...> - 2005-04-19 23:37:33
|
Hello: Some time back, I installed Fedora Core 1 and had a default printer HP PSC2110 working. I recently got another computer, installed Fedora Core 1, and tried to install HP PSC2110 as the default printer for it. I'm now able to run the ptal-hp device, display, etc., commands, ok. My printer shows queue type as mlc:usb:PSC_2100_Series, and CUPS recognizes the printer. When I ask the editor to print a page, the job makes it to a queue. My question is, where's the queue? What command would let me edit the path from the queue to the printer? Or, what file do I inspect to see what's going on? I'm also getting I/O error for the scanner. Any help appreciated. Thanks, Tom |
From: dsuffiel <dav...@hp...> - 2005-04-19 21:48:41
|
On Sat, 16 Apr 2005 14:08:07 +0200, Michael Gottwald wrote: > Hello, > > i use a HP PSC 950 with SuSE 9.1. After boot the printer works, but xsane > founds no scanner. When i restart the ptal-device, xsane find the scanner > (and i can work with it), but now the printer or the spooler reacts no > more! I stop the ptal-device and restart the cups-server, then i restart > the ptal-device: no success! All the same in which order: unsuccessful! > Only a reboot of the system helps. Is it the USB driver? Note i have a > digital camera connected with USB with no problems. What can i do? > > Best regards, > Michael I would try HPLIP instead of HPOJ. There are SuSE 9.1 specific instructions at hpinkjet.sf.net. Be sure to run "ptal-init setup" to remove any ptal devices before running HPLIP. |
From: dsuffiel <dav...@hp...> - 2005-04-19 21:36:38
|
On Fri, 08 Apr 2005 12:41:02 +0100, ricardo_cruz-BwYwT0D5Mwc7lZ9V/NTDHw wrote: > Hi! > > I have an HP PSC 750, and I'm having some troubles with configuration > under Linux. I'm using Debian Sarge. I compiled the kernel 2.6.11.6 > recently, and it's the one I'm using now. I installed the hpoj friver and > CUPS. I've done some connection tests described in the driver homepage, > and all went good. Then I configured CUPS to use my printer throung the > web interface but when I try to print the test page nothing happens. If I > go to the Jobs section, I can see the jobs with the abort state. If I try > to restart a job a message like: > > Error: > client-error-not-possible > > appears. Also when I boot my system the following two lines appear when > starting CUPS: > > drivers/usb/class/usblp.c: usblp0: nonzero read/write bulk status > received: -2 drivers/usb/class/usblp.c: usblp0: error -2 reading from > printer > > This is something with the kernel feature "USB print support", wich I > verified is compiled as a module in my system. > > Can anyone help me? > > Thanks > I would try HPLIP instead of HPOJ. Based on our debian contacts, there should be hplip debain package available. I have personally tested my psc 750 on HPLIP using FC1/2/3. |
From: dsuffiel <dav...@hp...> - 2005-04-19 21:28:49
|
I would try HPLIP instead of HPOJ. See hpinkjet.sf.net. On Wed, 30 Mar 2005 23:34:32 +0200, Xavier Poinsard wrote: > The printer is correctly seen by ptal-XXX. > If I try to print nothing happens, but if remove the usblp kernel module > printing starts but hangs almost immediately. > > ptal-init-setup : > > Found "psc 2400 series" > with serial number "MY47MM22XH6T". > This device is already set up as "mlc:usb:psc_2400_series". > > > in syslog : > ptal-mlcd: SYSLOG at ExMgr.cpp:652, dev=<mlc:usb:psc_2400_series>, > pid=30441, e=2, t=1112217458 ptal-mlcd successfully initialized. > ptal-printd: ptal-printd(mlc:usb:psc_2400_series) successfully > initialized using /var/run/ptal-printd/mlc_usb_psc_2400_series*. > ptal-photod: ptal-photod(mlc:usb:psc_2400_series) successfully > initialized, listening on port 5703. > > If I try to print : > ptal-mlcd: ERROR at ExMgr.cpp:2525, dev=<mlc:usb:psc_2400_series>, > pid=7423, e=16, t=1112160630 Couldn't find device! > > If I remove usblp : > ptal-mlcd: SYSLOG at > /var/lib/mythtv/mnt/home/msp/src/debian/hpoj/hpoj-0.91/mlcd/ExMgr.h:646, > dev=<mlc:usb:psc_2400_series@%001%002>, pid=7423, e=11, t=1112214650 > ptal-mlcd successfully activated, mode=1284.4. > ptal-mlcd: ERROR at ExMgr.cpp:3165, > dev=<mlc:usb:psc_2400_series@%001%002>, pid=27300, e=11, t=1112214655 > llioSubprocess: llioWrite returns -110, expected=63! > > > Additional info : > ptal-connect mlc:usb:psc_2400_series -service PTAL-MLCD-DUMP > ptal-connect: connecting to device "mlc:usb:psc_2400_series"... successful. > > ExMgr: > pid=30441 > gDebugFlag=0 > pBufferPool: available#=0, size=4102, requested#=390, allocated#=1 > noFork=0 > noDrain=0 > forceMlcDot4=0 > noDot4=0 > noMlc=0 > noPmlMultiplexing=0 > initialized=1 > fd=5: read=1, write=0 > fd=8: read=1, write=0 > fdCount=9 > exContext=2 > exState=0 > exActivateCount=0 > exCloseCount=0 > exCloseReason=0x0000 > tryDot4=0 > tryMlc=0 > transportMode=0=print-only > miser=0 > argcOriginal=8 > argvOriginal: "mlc:usb:psc_2400_series" "-devidmatch" "MDL:psc 2400 > series;" "-devidmatch" "SN:MY47MM22XH6T;" "-device" "/dev/usb/lp[0-9]*" > "/dev/usblp[0-9]*" > argc=0 > fdNull=4 > pFreeMsgPool: depth=0 > pPendingMsgQueue: depth=0 > pActiveTimerQueue: depth=0 > pPeriodicTimerQueue: depth=0 > select timeout: sec=0, usec=0, infinite=1 > consoleAllowRemote=0 > consoleOldStdin=6 > consoleOldStdout=7 > consoleIsRemote=0 > socketSuffix=<usb:psc_2400_series> > socketName=</var/run/ptal-mlcd/usb:psc_2400_series> > socketFd=5 > pmlTransportSession=8 > pmlCurrentSession=-1 > pmlLastSession=31 > llioPossibleName[0]=</dev/usb/lp[0-9]*> > llioPossibleName[1]=</dev/usblp[0-9]*> > llioPossibleNameCount=2 > llioName=<> > llioGlobBuffer.gl_pathc=0 > llioGlobBuffer.gl_offs=0 > llioGlobFlags=0 > llioMatchDeviceID[0]=<MDL:psc 2400 series;> > llioMatchDeviceID[1]=<SN:MY47MM22XH6T;> > llioMatchDeviceIDCount=2 > llioInterface[EX_INTERFACE_MLC].pForwardBdrQueue: depth=0 > llioInterface[EX_INTERFACE_MLC].active=0 > llioInterface[EX_INTERFACE_MLC].transportState=0 > llioInterface[EX_INTERFACE_MLC].fdPipe.read=-1 > llioInterface[EX_INTERFACE_MLC].fdPipe.write=-1 > llioInterface[EX_INTERFACE_MLC].fdDevice=-1 > llioInterface[EX_INTERFACE_MLC].overrideMaxForwardPacketSize=0 > llioInterface[EX_INTERFACE_MLC].pid=-1 > llioInterface[EX_INTERFACE_PRINT].pForwardBdrQueue: depth=0 > llioInterface[EX_INTERFACE_PRINT].active=0 > llioInterface[EX_INTERFACE_PRINT].transportState=0 > llioInterface[EX_INTERFACE_PRINT].fdPipe.read=-1 > llioInterface[EX_INTERFACE_PRINT].fdPipe.write=-1 > llioInterface[EX_INTERFACE_PRINT].fdDevice=-1 > llioInterface[EX_INTERFACE_PRINT].overrideMaxForwardPacketSize=0 > llioInterface[EX_INTERFACE_PRINT].pid=-1 > llioEnablePrintInterface=1 > llioDeviceID=<> > llioSavedDeviceID=<> > llioMatchVendorID=0xFFFFFFFF > llioMatchProductID=0xFFFFFFFF > llioAllowComposite=1 > llioGlobUsb=1 > llioAllowChannelChangeRequest=1 > llioBusAddress=0 > llioDeviceAddress=0 > llioVendorID=0x0000 > llioProductID=0x0000 > llioSupportedProtocols=0x00 > llioCurrentProtocol=0 > llioDesiredProtocol=0 > > Passthrough transport: > this=0x00000000080762F0 > port=0 > pMgr=0x0000000008073008 > pPhysicalPort=0x0000000008073008 > forwardTransactionCounter: current=128, initial=128, low=128, high=128, > max=128 > channelCount=1 > channelArray=0x00000000080763D0 > channelArray[0]=0x00000000080763E0 > overheadBufferCount=0 > pNextTransport=0x0000000000000000 > pForwardDataTimer=0x0000000008076390 (count=0) > pForwardDataTimeoutMsg=0x0000000008076360 > reverseDataBufferCount=0 > reverseDataBufferSize=0 > maxForwardBdrsPerTransaction=0 > nextChannelToAllocate=0 > absoluteMaxForwardDatalen=0 > absoluteMaxReverseDatalen=0 > nextBlockedChannel=-1 > lookupQueue: depth=0, peek=0x0000000000000000 > > MLC/1284.4 transport: > this=0x0000000008073DB0 > port=0 > pMgr=0x0000000008073008 > pPhysicalPort=0x0000000008073008 > forwardTransactionCounter: current=128, initial=128, low=128, high=128, > max=128 > channelCount=17 > channelArray=0x0000000008073FA8 > channelArray[0]=0x0000000008073FF0 > channelArray[1]=0x00000000080742F0 > channelArray[2]=0x00000000080744F0 > channelArray[3]=0x00000000080746F0 > channelArray[4]=0x00000000080748F0 > channelArray[5]=0x0000000008074AF0 > channelArray[6]=0x0000000008074CF0 > channelArray[7]=0x0000000008074EF0 > channelArray[8]=0x00000000080750F0 > channelArray[9]=0x00000000080752F0 > channelArray[10]=0x00000000080754F0 > channelArray[11]=0x00000000080756F0 > channelArray[12]=0x00000000080758F0 > channelArray[13]=0x0000000008075AF0 > channelArray[14]=0x0000000008075CF0 > channelArray[15]=0x0000000008075EF0 > channelArray[16]=0x00000000080760F0 > overheadBufferCount=0 > pNextTransport=0x00000000080762F0 > pForwardDataTimer=0x0000000008073E80 (count=0) > pForwardDataTimeoutMsg=0x0000000008073E50 > reverseDataBufferCount=0 > reverseDataBufferSize=0 > maxForwardBdrsPerTransaction=0 > nextChannelToAllocate=0 > absoluteMaxForwardDatalen=0 > absoluteMaxReverseDatalen=0 > nextBlockedChannel=-1 > lookupQueue: depth=0, peek=0x0000000000000000 > ---------------- > pForwardHeaderPool=0x0000000008073EC0 > mlcChannelArray=0x0000000008073FA8 > pCommandChannel=0x0000000008073FF0 > grcState=0 > reverseDataStopped=0 > tryDot4=0 > tryPreDot4=0 > tryMlc=0 > requestedRevision=0xFFFF > revision=0xFFFF > maxRemoteSockets=32 > > Command channel: > this=0x0000000008073FF0 > port=0 > channel=0 > localSocket=0 > pTransport=0x0000000008073DB0 > pMgr=0x0000000008073008 > pPhysicalPort=0x0000000008073008 > openingAnySetFlags=0x0010 > closingAnySetFlags=0x0124 > flags=0x0000 > countOpen=0 > countOpenFailure=0 > pService=0x0000000000000000 > scd=0x0000000000000000 > forwardDataPriority=0 > minBuffersRequired=0 > benefitOfMoreBuffers=0 > reverseDataBufferSize=0 > bufferCount=3 > remoteSocket=0 > maxForwardDatalen=0 > maxReverseDatalen=0 > countForwardData=0 > countReverseData=0 > countReverseBuffers=0 > countReverseBufferReturns=0 > lastReverseBuffer=0x0000000000000000 > currentForwardBuffer=0x0000000000000000 > currentGrabbedCredit=-1 > currentGrabbedTransaction=-1 > ---------------- > pMlcTransport=0x0000000008073DB0 > pCommandChannel=0x0000000008073FF0 > disableCreditCommands=1 > pForwardCreditRequestTimer=0x08074190 > pForwardCreditRequestMsg=0x0000000008074160 > pReverseCreditHeartbeatTimer=0x00000000080741F8 > pReverseCreditHeartbeatMsg=0x080741C8 > musherFirstCreditRequestDelay=2 > musherNextCreditRequestDelay=5 > gusherFirstCreditRequestDelay=5 > gusherNextCreditRequestDelay=10 > miserFirstCreditRequestDelay=0 > miserNextCreditRequestDelay=2 > gusherPiggybackCreditCount=1 > gusherCreditCount=2 > miserCreditRequestCount=2 > workaroundReverseCreditLoss=0 > maxForwardPacketSize=64 > maxReversePacketSize=64 > forwardCreditRequest=16 > forwardMaxOutstandingCredit=1 > forwardCredit: current=0, initial=0, low=0, high=0, max=65535 > lastCreditRequestGotUsNowhere=0 > reverseMaxOutstandingCredit=1 > reverseBuffersPerPacket=0 > uncreditedBuffers=3 > reverseCreditToGrant=0 > reverseCredit: current=0, initial=0, low=0, high=0, max=65535 > countSendPiggybackCredit=0 > countHandlePiggybackCredit=0 > countSendCredit=0 > countHandleCredit=0 > countHandleCreditAfterCreditRequest=0 > countSendCreditRequest=0 > countHandleCreditRequest=0 > countSendEmptyCreditRequestReply=0 > countHandleEmptyCreditRequestReply=0 > isGusher=-1 > ---------------- > pForwardCommandPool=0x0000000008074230 > pForwardNonconsumingQueue=0x0000000008074250 > pForwardReplyQueue=0x0000000008074260 > pForwardRequestQueue=0x0000000008074270 > forwardRequestCredit: current=0, initial=0, low=0, high=0, max=65535 > pCommandReplyTimer=0x00000000080742B0 (count=0) > pCommandReplyTimeoutMsg=0x0000000008074280 > allowErrorPackets=1 > lastRequest=0xFFFFFFFF > lastPsid=-1 > lastSsid=-1 > > Session 0: type=command > state=1 > fd=8 > scdlink=-1 > pLookup=0x0000000008073888 > outstandingForwardBdrCount=1 > pReverseBdrQueue: depth=0 > tcd=0x0000000000000000 > pCommandBdr=0x00000000080786A0 > pmlTrapsRegistered=0 > bitbucketSocket=0 > > > > ------------------------------------------------------- > This SF.net email is sponsored by Demarc: > A global provider of Threat Management Solutions. > Download our HomeAdmin security software for free today! > http://www.demarc.com/info/Sentarus/hamr30 |
From: Johannes M. <js...@su...> - 2005-04-18 10:49:17
|
Hello, On Apr 16 14:08 Michael Gottwald wrote (shortened): > i use a HP PSC 950 with SuSE 9.1. After boot the printer works, but xsane > founds no scanner. When i restart the ptal-device, xsane find the scanner > (and i can work with it), but now the printer or the spooler reacts no more! http://portal.suse.com/sdb/en/2002/05/ke_hp-officejet.html http://portal.suse.com/sdb/en/2004/10/jsmeix_scanner-setup-92.html Kind Regards Johannes Meixner -- SUSE LINUX Products GmbH, Maxfeldstrasse 5 Mail: js...@su... 90409 Nuernberg, Germany WWW: http://www.suse.de/ |
From: Michael G. <mic...@fr...> - 2005-04-16 16:00:09
|
Hello, i use a HP PSC 950 with SuSE 9.1. After boot the printer works, but xsane founds no scanner. When i restart the ptal-device, xsane find the scanner (and i can work with it), but now the printer or the spooler reacts no more! I stop the ptal-device and restart the cups-server, then i restart the ptal-device: no success! All the same in which order: unsuccessful! Only a reboot of the system helps. Is it the USB driver? Note i have a digital camera connected with USB with no problems. What can i do? Best regards, Michael |
From: Nathan M. <va...@va...> - 2005-04-14 15:30:08
|
I've been using the cups hplj driver for a while now... and I decided to get the scanner working, if i could... after installing hpoj (0.93-r3) (gentoo), and running ptal-init setup, which seemed to see my device fine.... ptal-connect -service ECHO fails... and sane doesn't have any devices I can get it to see... i'll attach the errors separately, along with the mlcd dump. n8 |
From: Darragh B. <fe...@co...> - 2005-04-13 14:07:02
|
Quoting G=E9rard Delafond <ge...@de...>: > Hi all ! > > I had to move a HP 2410 from a Linux box to a Windows box (XP). > > When I say to cups (http://127.0.0.12:631) to install the windows p= rinter, I > can choose HP in the list, then I don't have the name of the printe= r in the > list (I had it when the printer was connected to the Linux box). So= , I > cannot > choose a printer. If I choose "raw" printing, I hear the Windows pr= inter > make > some noise, so I know I can access to it. > > The Linux box uses HPIJS. could it be solved by using HPLIP ? Shoul= d I start > manually HPIJS to obtain the name of the printer in the list ? > > Thanks to anybody who could try to help me. > > Gerard Your looking to do something that cups doesn't support directly. I su= ggest looking at http://www.linuxdevcenter.com/pub/a/linux/2005/01/13/lnxckbk_samba.ht= ml and http://www.faqs.org/docs/Linux-mini/Debian-and-Windows-Shared-Printin= g.html You'll have to setup up samba and then setup cups to use samba to pri= nt to. You might find it easier to do it the reverse way around, setup the print= er on linux and make it available over samba as a network printer. -- Darragh "Nothing's foolproof to a sufficently talented fool" |
From: <ge...@de...> - 2005-04-13 07:13:39
|
Hi all ! I had to move a HP 2410 from a Linux box to a Windows box (XP). When I say to cups (http://127.0.0.12:631) to install the windows printer, I can choose HP in the list, then I don't have the name of the printer in the list (I had it when the printer was connected to the Linux box). So, I cannot choose a printer. If I choose "raw" printing, I hear the Windows printer make some noise, so I know I can access to it. The Linux box uses HPIJS. could it be solved by using HPLIP ? Should I start manually HPIJS to obtain the name of the printer in the list ? Thanks to anybody who could try to help me. Gerard |
From: <ric...@po...> - 2005-04-08 12:30:41
|
Hi! I have an HP PSC 750, and I'm having some troubles with configuration under Linux. I'm using Debian Sarge. I compiled the kernel 2.6.11.6 recently, and it's the one I'm using now. I installed the hpoj friver and CUPS. I've done some connection tests described in the driver homepage, and all went good. Then I configured CUPS to use my printer throung the web interface but when I try to print the test page nothing happens. If I go to the Jobs section, I can see the jobs with the abort state. If I try to restart a job a message like: Error: client-error-not-possible appears. Also when I boot my system the following two lines appear when starting CUPS: drivers/usb/class/usblp.c: usblp0: nonzero read/write bulk status received: -2 drivers/usb/class/usblp.c: usblp0: error -2 reading from printer This is something with the kernel feature "USB print support", wich I verified is compiled as a module in my system. Can anyone help me? Thanks |
From: Xavier P. <xpo...@op...> - 2005-03-31 13:22:41
|
Sorry for the noise : I solved the problem by switching to HPLIP and creating usb devices ( with "MAKEDEV usb" ). Xavier Poinsard wrote: > The printer is correctly seen by ptal-XXX. > If I try to print nothing happens, but if remove the usblp kernel module > printing starts but hangs almost immediately. > |
From: Johannes M. <js...@su...> - 2005-03-31 08:01:01
|
Hello, On Mar 30 19:00 Vailen wrote (shortened): > I'm trying to configure my HP PSC 500 All-in-one Parallel Port > Printer/Scanner, printing works fine with CUPS ... ... > Mar 30 17:43:47 linux ptal-mlcd: FATAL ERROR at ParPort.cpp:49, > dev=, pid=6332, e=2, t=1112024627 Access denied to parallel port! ... > SuSE Linux Professional 9.2, Kernel 2.6.8-24-default, > CUPS 1.1.21-5, sane 1.0.1.14-5, hpoj 0.91-123.2 See http://portal.suse.com/sdb/en/2002/05/ke_hp-officejet.html and http://portal.suse.com/sdb/en/2004/10/jsmeix_scanner-setup-92.html By the way: My HP LaserJet 1220 all-in-one works well both via USB and via parallel port (printing with CUPS scanning with SANE). I.e. it is no general problem in Suse Linux 9.2 Kind Regards, Johannes Meixner -- SUSE LINUX Products GmbH, Maxfeldstrasse 5 Mail: js...@su... 90409 Nuernberg, Germany WWW: http://www.suse.de/ |
From: Xavier P. <xpo...@fr...> - 2005-03-30 22:14:05
|
The printer is correctly seen by ptal-XXX. If I try to print nothing happens, but if remove the usblp kernel module printing starts but hangs almost immediately. ptal-init-setup : Found "psc 2400 series" with serial number "MY47MM22XH6T". This device is already set up as "mlc:usb:psc_2400_series". in syslog : ptal-mlcd: SYSLOG at ExMgr.cpp:652, dev=<mlc:usb:psc_2400_series>, pid=30441, e=2, t=1112217458 ptal-mlcd successfully initialized. ptal-printd: ptal-printd(mlc:usb:psc_2400_series) successfully initialized using /var/run/ptal-printd/mlc_usb_psc_2400_series*. ptal-photod: ptal-photod(mlc:usb:psc_2400_series) successfully initialized, listening on port 5703. If I try to print : ptal-mlcd: ERROR at ExMgr.cpp:2525, dev=<mlc:usb:psc_2400_series>, pid=7423, e=16, t=1112160630 Couldn't find device! If I remove usblp : ptal-mlcd: SYSLOG at /var/lib/mythtv/mnt/home/msp/src/debian/hpoj/hpoj-0.91/mlcd/ExMgr.h:646, dev=<mlc:usb:psc_2400_series@%001%002>, pid=7423, e=11, t=1112214650 ptal-mlcd successfully activated, mode=1284.4. ptal-mlcd: ERROR at ExMgr.cpp:3165, dev=<mlc:usb:psc_2400_series@%001%002>, pid=27300, e=11, t=1112214655 llioSubprocess: llioWrite returns -110, expected=63! Additional info : ptal-connect mlc:usb:psc_2400_series -service PTAL-MLCD-DUMP ptal-connect: connecting to device "mlc:usb:psc_2400_series"... successful. ExMgr: pid=30441 gDebugFlag=0 pBufferPool: available#=0, size=4102, requested#=390, allocated#=1 noFork=0 noDrain=0 forceMlcDot4=0 noDot4=0 noMlc=0 noPmlMultiplexing=0 initialized=1 fd=5: read=1, write=0 fd=8: read=1, write=0 fdCount=9 exContext=2 exState=0 exActivateCount=0 exCloseCount=0 exCloseReason=0x0000 tryDot4=0 tryMlc=0 transportMode=0=print-only miser=0 argcOriginal=8 argvOriginal: "mlc:usb:psc_2400_series" "-devidmatch" "MDL:psc 2400 series;" "-devidmatch" "SN:MY47MM22XH6T;" "-device" "/dev/usb/lp[0-9]*" "/dev/usblp[0-9]*" argc=0 fdNull=4 pFreeMsgPool: depth=0 pPendingMsgQueue: depth=0 pActiveTimerQueue: depth=0 pPeriodicTimerQueue: depth=0 select timeout: sec=0, usec=0, infinite=1 consoleAllowRemote=0 consoleOldStdin=6 consoleOldStdout=7 consoleIsRemote=0 socketSuffix=<usb:psc_2400_series> socketName=</var/run/ptal-mlcd/usb:psc_2400_series> socketFd=5 pmlTransportSession=8 pmlCurrentSession=-1 pmlLastSession=31 llioPossibleName[0]=</dev/usb/lp[0-9]*> llioPossibleName[1]=</dev/usblp[0-9]*> llioPossibleNameCount=2 llioName=<> llioGlobBuffer.gl_pathc=0 llioGlobBuffer.gl_offs=0 llioGlobFlags=0 llioMatchDeviceID[0]=<MDL:psc 2400 series;> llioMatchDeviceID[1]=<SN:MY47MM22XH6T;> llioMatchDeviceIDCount=2 llioInterface[EX_INTERFACE_MLC].pForwardBdrQueue: depth=0 llioInterface[EX_INTERFACE_MLC].active=0 llioInterface[EX_INTERFACE_MLC].transportState=0 llioInterface[EX_INTERFACE_MLC].fdPipe.read=-1 llioInterface[EX_INTERFACE_MLC].fdPipe.write=-1 llioInterface[EX_INTERFACE_MLC].fdDevice=-1 llioInterface[EX_INTERFACE_MLC].overrideMaxForwardPacketSize=0 llioInterface[EX_INTERFACE_MLC].pid=-1 llioInterface[EX_INTERFACE_PRINT].pForwardBdrQueue: depth=0 llioInterface[EX_INTERFACE_PRINT].active=0 llioInterface[EX_INTERFACE_PRINT].transportState=0 llioInterface[EX_INTERFACE_PRINT].fdPipe.read=-1 llioInterface[EX_INTERFACE_PRINT].fdPipe.write=-1 llioInterface[EX_INTERFACE_PRINT].fdDevice=-1 llioInterface[EX_INTERFACE_PRINT].overrideMaxForwardPacketSize=0 llioInterface[EX_INTERFACE_PRINT].pid=-1 llioEnablePrintInterface=1 llioDeviceID=<> llioSavedDeviceID=<> llioMatchVendorID=0xFFFFFFFF llioMatchProductID=0xFFFFFFFF llioAllowComposite=1 llioGlobUsb=1 llioAllowChannelChangeRequest=1 llioBusAddress=0 llioDeviceAddress=0 llioVendorID=0x0000 llioProductID=0x0000 llioSupportedProtocols=0x00 llioCurrentProtocol=0 llioDesiredProtocol=0 Passthrough transport: this=0x00000000080762F0 port=0 pMgr=0x0000000008073008 pPhysicalPort=0x0000000008073008 forwardTransactionCounter: current=128, initial=128, low=128, high=128, max=128 channelCount=1 channelArray=0x00000000080763D0 channelArray[0]=0x00000000080763E0 overheadBufferCount=0 pNextTransport=0x0000000000000000 pForwardDataTimer=0x0000000008076390 (count=0) pForwardDataTimeoutMsg=0x0000000008076360 reverseDataBufferCount=0 reverseDataBufferSize=0 maxForwardBdrsPerTransaction=0 nextChannelToAllocate=0 absoluteMaxForwardDatalen=0 absoluteMaxReverseDatalen=0 nextBlockedChannel=-1 lookupQueue: depth=0, peek=0x0000000000000000 MLC/1284.4 transport: this=0x0000000008073DB0 port=0 pMgr=0x0000000008073008 pPhysicalPort=0x0000000008073008 forwardTransactionCounter: current=128, initial=128, low=128, high=128, max=128 channelCount=17 channelArray=0x0000000008073FA8 channelArray[0]=0x0000000008073FF0 channelArray[1]=0x00000000080742F0 channelArray[2]=0x00000000080744F0 channelArray[3]=0x00000000080746F0 channelArray[4]=0x00000000080748F0 channelArray[5]=0x0000000008074AF0 channelArray[6]=0x0000000008074CF0 channelArray[7]=0x0000000008074EF0 channelArray[8]=0x00000000080750F0 channelArray[9]=0x00000000080752F0 channelArray[10]=0x00000000080754F0 channelArray[11]=0x00000000080756F0 channelArray[12]=0x00000000080758F0 channelArray[13]=0x0000000008075AF0 channelArray[14]=0x0000000008075CF0 channelArray[15]=0x0000000008075EF0 channelArray[16]=0x00000000080760F0 overheadBufferCount=0 pNextTransport=0x00000000080762F0 pForwardDataTimer=0x0000000008073E80 (count=0) pForwardDataTimeoutMsg=0x0000000008073E50 reverseDataBufferCount=0 reverseDataBufferSize=0 maxForwardBdrsPerTransaction=0 nextChannelToAllocate=0 absoluteMaxForwardDatalen=0 absoluteMaxReverseDatalen=0 nextBlockedChannel=-1 lookupQueue: depth=0, peek=0x0000000000000000 ---------------- pForwardHeaderPool=0x0000000008073EC0 mlcChannelArray=0x0000000008073FA8 pCommandChannel=0x0000000008073FF0 grcState=0 reverseDataStopped=0 tryDot4=0 tryPreDot4=0 tryMlc=0 requestedRevision=0xFFFF revision=0xFFFF maxRemoteSockets=32 Command channel: this=0x0000000008073FF0 port=0 channel=0 localSocket=0 pTransport=0x0000000008073DB0 pMgr=0x0000000008073008 pPhysicalPort=0x0000000008073008 openingAnySetFlags=0x0010 closingAnySetFlags=0x0124 flags=0x0000 countOpen=0 countOpenFailure=0 pService=0x0000000000000000 scd=0x0000000000000000 forwardDataPriority=0 minBuffersRequired=0 benefitOfMoreBuffers=0 reverseDataBufferSize=0 bufferCount=3 remoteSocket=0 maxForwardDatalen=0 maxReverseDatalen=0 countForwardData=0 countReverseData=0 countReverseBuffers=0 countReverseBufferReturns=0 lastReverseBuffer=0x0000000000000000 currentForwardBuffer=0x0000000000000000 currentGrabbedCredit=-1 currentGrabbedTransaction=-1 ---------------- pMlcTransport=0x0000000008073DB0 pCommandChannel=0x0000000008073FF0 disableCreditCommands=1 pForwardCreditRequestTimer=0x08074190 pForwardCreditRequestMsg=0x0000000008074160 pReverseCreditHeartbeatTimer=0x00000000080741F8 pReverseCreditHeartbeatMsg=0x080741C8 musherFirstCreditRequestDelay=2 musherNextCreditRequestDelay=5 gusherFirstCreditRequestDelay=5 gusherNextCreditRequestDelay=10 miserFirstCreditRequestDelay=0 miserNextCreditRequestDelay=2 gusherPiggybackCreditCount=1 gusherCreditCount=2 miserCreditRequestCount=2 workaroundReverseCreditLoss=0 maxForwardPacketSize=64 maxReversePacketSize=64 forwardCreditRequest=16 forwardMaxOutstandingCredit=1 forwardCredit: current=0, initial=0, low=0, high=0, max=65535 lastCreditRequestGotUsNowhere=0 reverseMaxOutstandingCredit=1 reverseBuffersPerPacket=0 uncreditedBuffers=3 reverseCreditToGrant=0 reverseCredit: current=0, initial=0, low=0, high=0, max=65535 countSendPiggybackCredit=0 countHandlePiggybackCredit=0 countSendCredit=0 countHandleCredit=0 countHandleCreditAfterCreditRequest=0 countSendCreditRequest=0 countHandleCreditRequest=0 countSendEmptyCreditRequestReply=0 countHandleEmptyCreditRequestReply=0 isGusher=-1 ---------------- pForwardCommandPool=0x0000000008074230 pForwardNonconsumingQueue=0x0000000008074250 pForwardReplyQueue=0x0000000008074260 pForwardRequestQueue=0x0000000008074270 forwardRequestCredit: current=0, initial=0, low=0, high=0, max=65535 pCommandReplyTimer=0x00000000080742B0 (count=0) pCommandReplyTimeoutMsg=0x0000000008074280 allowErrorPackets=1 lastRequest=0xFFFFFFFF lastPsid=-1 lastSsid=-1 Session 0: type=command state=1 fd=8 scdlink=-1 pLookup=0x0000000008073888 outstandingForwardBdrCount=1 pReverseBdrQueue: depth=0 tcd=0x0000000000000000 pCommandBdr=0x00000000080786A0 pmlTrapsRegistered=0 bitbucketSocket=0 |
From: Vailen <ka...@gm...> - 2005-03-30 17:22:48
|
Hi, I don't know if this problem has already been discussed, but I can't find it elsewhere. I'm trying to configure my HP PSC 500 All-in-one Parallel Port Printer/Scanner, printing works fine with CUPS and with Samba even my W2k-Box can print. What I haven't figured out yet, is how to configure it so I can also use the Scanner. In YaST I can only choose beetween USB and SCSI Scanners, and when I use "ptal-init setup" I get *** ptal-mlcd failed to start! Check syslog file for error messages. syslog tells me this: Mar 30 17:43:47 linux ptal-mlcd: FATAL ERROR at ParPort.cpp:49, dev=, pid=6332, e=2, t=1112024627 Access denied to parallel port! Can anybody help solving this Problem???? How do I unlook the parallel port???? Thanx Kai P.S.: In case it matters, SuSE Linux Professional 9.2, Kernel 2.6.8-24-default, CUPS 1.1.21-5, sane 1.0.1.14-5, hpoj 0.91-123.2 |
From: dsuffiel <dav...@hp...> - 2005-03-15 00:43:49
|
On Sat, 12 Mar 2005 15:33:21 -0500, Mark Pilant wrote: > Greetings. > > I'm currently running RedHat Fedora Core 1 recently added an HP 7310 > to do network printing. Following various directions I was able to > locate on the web, I am able to get simple text to print without > any problems. (Part of this was downloading and building the latest > and greatest code for hpiod, hpssd, hpoj, etc.) > > So far, I have not been able to get the correct incantation to get > ghostscript (I have version 7.07) to correctly print postscript files > on the printer. > > I'm not sure what additional information is needed to help with the > diagnosis, but let me know and I'll find it. > > It is most likely something silly/simple/stupid I'm doing, but I just > haven't been able to find it. :-P > > Thanks in advance. > > - Mark Also in case you missed it. There is a HPLIP 0.8.8 patch that is needed for network snmp support. The patch can be downloaded here http://hpinkjet.sourceforge.net/hplip-0.8.8.patch . The patch is required for network printing. -dave |
From: dsuffiel <dav...@hp...> - 2005-03-15 00:36:22
|
On Sat, 12 Mar 2005 15:33:21 -0500, Mark Pilant wrote: > Greetings. > > I'm currently running RedHat Fedora Core 1 recently added an HP 7310 > to do network printing. Following various directions I was able to > locate on the web, I am able to get simple text to print without > any problems. (Part of this was downloading and building the latest > and greatest code for hpiod, hpssd, hpoj, etc.) > > So far, I have not been able to get the correct incantation to get > ghostscript (I have version 7.07) to correctly print postscript files > on the printer. > > I'm not sure what additional information is needed to help with the > diagnosis, but let me know and I'll find it. > > It is most likely something silly/simple/stupid I'm doing, but I just > haven't been able to find it. :-P > > Thanks in advance. > > - Mark Refering to the Network install instructions at http://hpinkjet.sourceforge.net/install.php#print_queue step 12, you will need to manually enter a uri for your printer. The uri should look something like this with your own IP address. hp:/net/Officejet_7300_series?ip=155.252.63.95 |
From: Mark P. <pi...@sa...> - 2005-03-12 20:33:24
|
Greetings. I'm currently running RedHat Fedora Core 1 recently added an HP 7310 to do network printing. Following various directions I was able to locate on the web, I am able to get simple text to print without any problems. (Part of this was downloading and building the latest and greatest code for hpiod, hpssd, hpoj, etc.) So far, I have not been able to get the correct incantation to get ghostscript (I have version 7.07) to correctly print postscript files on the printer. I'm not sure what additional information is needed to help with the diagnosis, but let me know and I'll find it. It is most likely something silly/simple/stupid I'm doing, but I just haven't been able to find it. :-P Thanks in advance. - Mark |