Canon Lide50 not working

Hi,
first of all i love my archlinux, but now my Scanner Canon Canoscan Lide50, which used to work on Kubuntu, refuses to work on Archlinux.
I added my user to the group scanner.
$ sane-find-scanner
found USB scanner (vendor=0x04a9 [Canon], product=0x2213 [CanoScan], chip=GL841) at libusb:001:006
$ scanimage -L
device `genesys:libusb:001:006' is a Canon LiDE 35/40/50 flatbed scanner
$ scanimage -v
scanimage: sane_start: Error during device I/O
Any scanning, also with Xsane, is aborted in that way. Has anyone a Canon Lide (<=50) running and can give me a hint?
Thanks
redada

Thank you for your efforts, guys.
@scottish: I understand that my scanner works under many distros, I have even tried (under Mandriva), and it worked out-of-the-box. Since then only my OS has changed, so I suppose the problem is more Arch-specific.
fnaaijkens' "chmod 644" hint on the H4L page didn't help, it just hid my scanner from "scanimage -L" if listing scanners as user. However file permissions are easily configurable through udev's MODE, so chmod is not needed at this point (the udev default for scanners is MODE="0664").
Anyway, thanks for the udev hint, I've learnt much from its man pages, and it seems to be promising. However it is mainly for a) managing device nodes, which I suppose not to be so important in my case, since scanimage/xsane finds the scanner, no more device nodes needed; and b) handle user space actions, which could mean loading kernel modules or whatever, but I don't know which actions should I take as a udev rule.
@B: No, as root I get exactly the same results. According to the SANE homepage manual you suggested, I increased debug verbosity:
[barci@barcipc ~]$ export SANE_DEBUG_SANEI_USB=4
[barci@barcipc ~]$ export SANE_DEBUG_GENESYS=4
[barci@barcipc ~]$ export SANE_DEBUG_GENESYS_GL841=4
[barci@barcipc ~]$ scanimage -d genesys:libusb:001:042
[sanei_debug] Setting debug level of genesys to 4.
[genesys] SANE Genesys backend version 1.0 build 11 from sane-backends 1.0.20
[sanei_debug] Setting debug level of sanei_usb to 4.
[sanei_usb] sanei_usb_init: marking existing devices
[sanei_usb] sanei_usb_init: Looking for kernel scanner devices
[sanei_usb] sanei_usb_init: Looking for libusb devices
[sanei_usb] sanei_usb_init: found libusb device (0x04a9/0x2213) interface 0 at libusb:001:042
[sanei_usb] store_device: add dn 0 with libusb:001:042
[genesys] sane_init: little endian machine
[sanei_usb] sanei_usb_find_devices: vendor=0x04a9, product=0x2213
[genesys] attach: trying to open device `libusb:001:042'
[sanei_usb] sanei_usb_open: opened usb device `libusb:001:042' (*dn=0)
[genesys] attach: device `libusb:001:042' successfully opened
[sanei_usb] sanei_usb_get_vendor_product: device 0: vendorID: 0x04a9, productID: 0x2213
[genesys] attach: found Canon flatbed scanner LiDE 35/40/50 at libusb:001:042
[genesys] sane_open: found `canon-lide-50' in devlist
[sanei_usb] sanei_usb_open: we already have a bulk-in endpoint (address: 0x81), ignoring the new one
[sanei_usb] sanei_usb_open: we already have a bulk-out endpoint (address: 0x02), ignoring the new one
[sanei_usb] sanei_usb_open: we already have a int-in endpoint (address: 0x83), ignoring the new one
[sanei_usb] sanei_usb_open: opened usb device `libusb:001:042' (*dn=0)
[genesys] init_options: custom gamma disabled
[sanei_debug] Setting debug level of genesys_gl841 to 4.
[genesys_gl841] gl841_slow_back_home: already at home, completed
[genesys_gl841] gl841_init_scan_regs settings:
Resolution : 300DPI/300DPI
Lines : 1
PPL : 4
Startpos : 0/0
Depth/Channels: 16/3
Flags : 37
[genesys_gl841] gl841_init_scan_regs : stagger=0 lines
[genesys_gl841] gl841_init_scan_regs : exposure_time=1866 pixels
[genesys_gl841] gl841_init_scan_regs: move=0 steps
[genesys_gl841] gl841_init_scan_regs: move=0 steps
[genesys_gl841] gl841_init_scan_regs: physical bytes to read = 48
[genesys_gl841] gl841_init_scan_regs: total bytes to send = 54532764
[genesys_gl841] gl841_init: starting dummy data reading
[genesys] Calibration filename set to:
[genesys] >/home/barci/.sane/canon-lide-50.cal<
[genesys] read_calibration: reading one record
[genesys_gl841] gl841_slow_back_home: already at home, completed
[genesys] genesys_flatbed_calibration
[genesys_gl841] gl841_init_scan_regs settings:
Resolution : 300DPI/300DPI
Lines : 1
PPL : 2600
Startpos : 0/0
Depth/Channels: 16/3
Flags : 37
[genesys_gl841] gl841_init_scan_regs : stagger=0 lines
[genesys_gl841] gl841_init_scan_regs : exposure_time=5320 pixels
[genesys_gl841] gl841_init_scan_regs: move=0 steps
[genesys_gl841] gl841_init_scan_regs: move=0 steps
[genesys_gl841] gl841_init_scan_regs: physical bytes to read = 31200
[genesys_gl841] gl841_init_scan_regs: total bytes to send = 54532764
[genesys_gl841] gl841_offset_calibration: starting first line reading
[genesys_gl841] gl841_offset_calibration: black/white pixels: 5200/0,5200/0,5200/0
[genesys_gl841] gl841_offset_calibration: starting first line reading
[genesys] sanei_genesys_read_data_from_scanner: timeout, buffer does not get filled
[genesys] genesys_flatbed_calibration: offset calibration failed: Error during device I/O
[genesys] genesys_start_scan: failed to do flatbed calibration: Error during device I/O
scanimage: sane_start: Error during device I/O
[genesys_gl841] gl841_slow_back_home: already at home, completed
[barci@barcipc ~]$
The first line assuming something went wrong is "timeout, buffer does not get filled". The only relevant google result I found is the source code of the genesys backend. I haven't a clue what next. Any suggestions?
Meanwhile I started two further debugging lines:
1. With the Mandriva Live CD I tried to find out with lsmod which modules are loaded exactly when I plug the scanner; they were parport_pc, ppdev and parport, but loading them manually under Arch didn't help. They handle parallel port devices, are they relevant in case of a USB device?
2. I issued "udevadm monitor --env" + plug scanner + unplug scanner + Ctrl+C both under Live CD and Arch. Under Arch all blocks containg the line "SUBSYSTEM=usb_endpoint" were missing.
Here is a sample of this kind of blocks I see under Mandriva:
UDEV [1256502201.043944] add /devices/pci0000:00/0000:00:10.4/usb5/5-4/5-4:1.0/usb_endpoint/usbdev5.4_ep83 (usb_endpoint)
UDEV_LOG=3
ACTION=add
DEVPATH=/devices/pci0000:00/0000:00:10.4/usb5/5-4/5-4:1.0/usb_endpoint/usbdev5.4_ep83
SUBSYSTEM=usb_endpoint
SEQNUM=1580
DEVNAME=/dev/usbdev5.4_ep83
MAJOR=252
MINOR=15
DEVLINKS=/dev/char/252:15
Thank you in advance.

Similar Messages

  • Canon UFRII not working with IR C5180

    Sadly I spent hours on this issue at a client yesterday with no resolution.
    Not using UFR but just the Canon PPD I can print fine from all stations (both 10.5 and 10.6). The client needs to be sending department ID's along with the print jobs for accounting purposes and so I began my (not)love affair with UFRII.
    1) The IR C 5180 is listed as a supported model and I can can add (LPD, per Canon's instructions as well as suggestions here) the printer without issue.
    2) From both the print queue dialog (via System Prefs) and the print dialog from various applications I've confirmed successful bidirectional communication with the printer.
    3) I can send a print job with a department code but then UFR immediately pops up an error saying something like "Cannot communicate with the printer..." obviously leading to no job showing up at the printer.
    4) I can load the web interface for the C5180 but I don't admin the printer so I'm not going to make changes there as i don't know who I might hurt in the process. (I'm there to help 4-5 Mac users in an otherwise Windows environment.)
    I've reset the printing system, restarted the computer, attempted this on two different computers and also followed suggestions found here for manually removing some files after attempting an uninstall before reinstalling UFR. I'm sure I tried more than that yesterday but suffice it to say I did a lot of troubleshooting all of which boils down to the four points above.
    I opted for trying the UFR because that seems to be the way Canon intends for this to be working. Unfortunately at some point in the past this all worked fine and my digging up of old machines at the client seems to show that it was working using a PS driver. The latest version of this I see on the C5180 download page is 1.81 from February of 2008.
    The client needs this working ASAP so my question is do I keep banging my head against UFR or simply try to recreate the goodness of the past using a PS driver from over two years ago? Any input/insight is greatly appreciated.

    Unfortunately you may need to keep banging your head with the UFR2 driver. The current PS drivers (the v2.11 'CUPS' and v1.81) do not work on Snow. And according to my Canon contact the PS driver for SL is not due till the middle of May.
    With reference to Point 2, can you confirm that you are able to open the UFR II Printmonitor and get information about the iRC5180 configuration. If this is working okay then it does confirm you have a bidirectional path to the printer and would suggest that the printing problem lies elsewhere.
    If the above is working, then the machine firmware could be the fault. To use the v2.06 UFR2 driver, you need the firmware to be relatively recent. The latest system version for the iRC5180 series is v92.06. If the machine is running a system that is considerably older, such as v80 or earlier, then a Canon tech should be called to update the machine. The firmware version can be found by opening the iRC5180 web page and select Device then Device Information. The entry Controller Version will list three numbers separated by full stops. The first number is the main board firmware version.
    If the firmware is later than v80, then would you be able to post back here the cups error log information pertaining to one of the failed print jobs for the UFR2 driver? I would like to look at what the log says before the 'Cannot communicate' message appears.
    Pahu

  • Canon Selphys not working with Gutenprint

    Is there anybody who can confirm that a Canon Selphy (any model) printer (sublimation) is really working with Guteprint drivers (comes with Snow Leopard)? Because there is reports everywhere that they are not working:
    http://discussions.apple.com/thread.jspa?messageID=10078893&#10078893
    http://discussions.apple.com/thread.jspa?messageID=10028860&#10028860
    http://discussions.apple.com/thread.jspa?messageID=10167685&#10167685
    http://discussions.apple.com/thread.jspa?messageID=10163518&#10163518
    Mine is not working with Gutenprint either. I have Canon Selphy CP-740. I downloaded even the newest gutenprint drivers (5.2.4) but no.
    http://gimp-print.sourceforge.net/MacOSX.php
    I have the exact same symptoms as in the first three post in the first thread above: The driver reports that it's 100% ready, but nothing happens. With the updated 5.2.4 it takes the paper inside the printer and then stops there!
    Of course I got it working with the original (old) Canon drivers from Canon's homepage, like some other people on those threads. But the Canon driver is not nearly as good, because there is so darn few adjustments. Gutenprint would have been much better.
    So - Is there any Sephys out there actually working with Snow Leopard's Gutenprint drivers?

    Hi ANinnovation!
    Thanks for posting! Canon does not provide direct support for imageRUNNER series products, but your dealer will be able to help you! If you don't have a dealer, please call us at 1-800-OK-CANON (1-800-652-2666) and we will be happy to provide you with the names of dealers who are in your area!

  • Canon LBP2900i not working

    Hi Everyone,
    I am new to Macbook Pro. I tried the advice given in the communities, such as downloading the CAPT driver as well as replacing the CAPT folder as advised. Unfortunately my Macbook is only able to detect the printer but not to print. It either says failed tp read the module or error 9782.
    I realise that my OS X is version 10.6.8 instead of previous version, does it matter or have I missed anything in the steps?
    Please advise. Thanks.

    I hear ya. I've got a two month old color laser Canon LBP7200CN here in Japan and it has not worked since Apple updated to OS 10.6.8. I've tried several of the "fixes" found on the internet, no dice.  I also called Canon tech support and all they could do was apologize. Argh. Apple recently put out  a printer driver update for Canon but this did no good either. I'm very frustrated with the lack of support from both companies.

  • Epson and Canon printers not working with 10.7.5

    Anyone know if there is a fix for Epson and Canon printers for 10.7.5? Did Apple intentionally switch off printer drivers to force us to upgrade to Mountain Lion? I called Epson technical support and they mentioned it's a well-known issue and they said to "wait for an Apple update". I doubt that will fix the issue. My Canon printer stopped working for months already and there is still no fix.

    Hey there zoneinfinite!
    I have an article here that can help you find and manually install the most updated printer drivers for your specific printers:
    Printer and scanner software available for download
    http://support.apple.com/kb/ht3669
    We also have an article that will have some helpful tips for troubleshooting printer issues in OS X, and it can be found here:
    Troubleshooting printer issues in OS X
    http://support.apple.com/kb/TS3147
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Canon scanner not working with MacBook Pro.

    I wonder if anyone is able to help. I recently bought a Canon MG5550 Printer/Scanner and I am having trouble with scanning. When I press the scan button on the printer nothing happens, not evening a warning message. I have tried using a cable and this hasn't improved the sitation. When I go onto Preview, I can select "Import from Canon MG5550 Series" under "File" but I get a message saying that the software for this device hasn't been downloaded, even though it has. I notice that on this page the MG5550 isn't recognised, and I wonder id this could explain the sitation http://support.apple.com/kb/HT3669?viewlocale=en_US&locale=en_US#canon-inkjet. Anyone know any way around this?
    Thanks in advance!
    Will

    I had the same problem and just downloaded this http://www.canon.nl/Support/Consumer_Products/products/Fax__Multifunctionals/Ink Jet/PIXMA_MG_series/PIXMA_MG5550.aspx?DLtcmuri=tcm:16-1082112&page=2&type=downlo ad
    it works now!
    good luck!

  • Canon LBP3100B Not working since installing a wireless modem

    My Mac will not print to my printer even though the printer appears in the printer list and the print queue shows a job "printing". The printer utility thinks no printer has been installed. The printer doesn't make any noise and nothing happens. I have tried resetting the printers (deleting all printers). I have reinstalled the software and printer several times, but still no joy. Canon have supplied me with a pixma ip4700 in the meantime, and that works fine. They have tried to duplicate my problem (on a Mac using my OS) without success. Can anyone help?
    Thanks

    Mandl7 wrote:
    I have noticed that although the first time I added the printer there was an icon at the top of the Add Printer window saying "More Printers" this doesn't appear any more.
    With the CAPT driver installed, the More Printers button takes some time to appear in the bottom left corner of the Default Add Printer view.
    If this More Printers button does not appear after several seconds then something may have gone wrong with the CAPT driver re-installation (assuming you did install the CAPT v3.10 driver after deleting the CAPT folder). In this case I would run the CAPT installer again.
    Also I can't add via the More Printers button as when I do that the printer does not appear in the list of printers after I click on the driver that way.
    Sorry, but I thought you said that the More Printers button is not appearing? If it is appearing and after you select it and then Canon USB (CUPS CAPT) from the top menu, the LBP3100 should be visible in this view if it is connected via USB to the Mac.
    I can add the printer through the Print Using field by choosing Other and finding the PPD on the HD (Library - Printers - Canon - PPD's).However, although the printer then appears in the list, sending a print job doesn't wake up the printer, it just adds to the print queue.
    This would be an expected result as you cannot add the CAPT printer using this method.
    Also when I look up the Printer Utility under Printer Setup in the Print Queue. It says there are no registered printers and status monitor will be terminated.
    Again, if the printer was added by selecting the PPD via the Other menu then the CAPT print monitor will not function correctly. So I suggest you delete this newly created printer queue and select to add the printer again by selecting More Printers when it appears. I just tested how long it takes and it was about 5 seconds before I saw More Printers. Then when I did select it I could see Canon USB (CUPS CAPT) and Canon IP (CUPS CAPT) in the top drop menu.
    If you can select Canon USB (CUPS CAPT) at this point but then you don't see the LBP3100B in the bottom window then it may be worth you trying another USB cable.

  • Canon ZR40 not working w/imovie

    Hi. I just upgraded to ilife '08 and now my Canon ZR40 camcorder is not being picked up by imovie. Any advice?? Thanks.

    Same issue here. I've got a ZR40, a very lightly used Apple-brand firewire cable, a year old macbook, leopard and iLife '08. No dice. This camera and cable worked well for me on a G4 tower, running panther, and iMovie 2/3.
    I'll be quite surprised and disappointed if newer hardware and software has broken compatibility with a standard firewire DV camera. I'm on hold with apple phone support now; I'll update the message with what they tell me.

  • Canon MP560 not working after upgrade to Snow leopard

    Hi there
    I'm writing in the hope that someone maybe able to help! Yesterday I upgraded my MacBook to snow leopard. Everything seems to have gone OK, however, my printer -- Canon MP560 is now not responding. When I go to print it says' /System/Library/Printers/Libraries/PrintJobMgr/Contents/MacOS/PrintJobMgr failed'.
    The blue WiFi light is on, but nothing happens! I would be so grateful for any advice as I really don't have any idea of what to do !!!
    Thanks In advance

    Have you installed he most recent Canon Printer Drivers via Software Update?
    Have you tried going to the "Print and Fax" pane of the system preferences, and Control-clicking into the panel at the left that would normally show installed printers?
    If not, do that and if the cursor spins, wait until it stops, and the MP560 should show up as a Bonjour Printer/Scanner. Then click "+" to add a printer, then "more printers" and then select "Canon IJ Networking". The MP560 should no longer be an "unsupported printer."

  • Canon IPF8000 not working with Snow Leopard

    My Canon IPF8000 is on a Windows network. I was able to print to it in OSX 10.5 and use all the extra handy features like Easy Layout, etc. Since upgrading to Snow Leopard it's not possible to print to it at all. Is there anyone that is able to do so successfully running Snow Leopard and can you please help?
    Thanks!

    Not quite sure what you mean by on a Windows network. Do you mean it is being shared by a Windows server?
    If that is not what you mean, and the printer is directly connected to the network via Ethernet, then you can use the following driver which supports Mac OS X 10.6 to print to the iPF8000.
    http://support-au.canon.com.au/contents/AU/EN/0100201302.html

  • 10.7 And Canon MP510 (Not working anymore) Problem!

    Hello,
    since the last drivers update my Canon All In One Device won't work anymore.
    Printing and scanning can't be done anymore and the device won't even be
    recognized anymore.
    I tried to add it over system preferences several times, but nothing.
    Has anyone a clue how to solve this problem?

    I just tried the reset printer proceedure, and it worked!
    http://support.apple.com/kb/ht1341

  • Canon LBP6020B not working

    I have tried almost everything
    Followed the CUPS wiki article https://wiki.archlinux.org/index.php/CUPS
    tried gutenprint, cndrvcups-lb, cndrvcups-lb-bin, cups-bjnp
    also Canon CAPT https://wiki.archlinux.org/index.php/Canon_CAPT
    What happens is that the system recognizes and connects to the printer, but when I print something it just displays a message "printing" and after few seconds another message "successfully printed" without any error
    help is much appreciated

    I have tried almost everything
    Followed the CUPS wiki article https://wiki.archlinux.org/index.php/CUPS
    tried gutenprint, cndrvcups-lb, cndrvcups-lb-bin, cups-bjnp
    also Canon CAPT https://wiki.archlinux.org/index.php/Canon_CAPT
    What happens is that the system recognizes and connects to the printer, but when I print something it just displays a message "printing" and after few seconds another message "successfully printed" without any error
    help is much appreciated

  • Canon i9900 Not Working

    i9900 printer is showing up in setup, but no apparent communication via firewire. When I try to pull up the utility panel, it defaults to USB connection and crashes.

    Printer and utility software works via USB, but none of my FW peripherals (other than hard drives) are working. Everything is recognized, however.

  • Canoscan 9950F still not working with 11/26 fix from Canon

    Just reported this to Canon. Image Capture and VueScan both work. I can get the scanner to work on a MBP but not on the G4 iMac .... except on a fresh install and only one user account. I you create a 2nd user (not even migrate data, just create a 2nd user), the Canon Toolbox appears to lose its pathing to the scanner driver. Bizarre.
    I've deleted the TWAIN driver manually and using the Canon utility (from the web site). I've installed, reinstalled, uninstalled every combination of Toolbox and TWAIN driver imaginable. So it's back with Canon .... close but

    This may not help you, but here is what I found.
    I have a Flatscreen G4 iMac 1.2G. I have had no end of trouble with the USB ports since moving to Leopard.
    The first problem I had was that TimeMachine would not work with my Seagate 500G FreeAgent disk. Sometimes it would not mount, file corruption etc. Thought I had a stuffed USB adaptor.
    Somewhere amongst this greif I notice that my Canon LIDE50 scanner would not work any more.
    There are numerous threads around the place on this issue. This scanner is claimed to not work with Leopard. Anyway, at this point I disconnected the scanner and also upgraded to 10.5.1. TimeMachine now works fine.
    Since then, the scanner has been on our MacBook Pro using BootCamp. I did try Vuescan, it does work, but I'd rather use the Canon tools for what I'm doing.
    Tonight I did a bit of poking around to make sure all the files for the scanner installed in the right places. During this process I notice the USB disk had gone missing again. To cut a long story short, the USB disk and the Canon LIDE50 scanner are mutually exclusive. Plug only the scanner in, it works. Plug only the disk in, it works. Plug them both in, neither work! At this point I'm shutting down and restarting to change them over, but at least I have a work around.

  • Canon IR C2380i not working after upgrading to 10.9

    Hi,
    I was wondering if any one knows a work around to get canon ir c2380i working on th emac, i have had a few issues with this but now afetr the upgrade it is no longer working.
    I have contacted Canon and i have updated all driver yet nothing is working
    The printer worked fine before the upgrade (but it took a while to get this going)
    The printer is a network priniter with Fixed ip adress
    Any help would be much apreciated.
    how can i big up my Apple when its not working.. Come on apple please dont become like window and relese with errors its just pants it why we pay the extra right ?

    Have you looked at the other Canon posts here and tried to download the driver from the Australian Canon site? There are also some posts in the "More Like This" sidebar.
    http://support-au.canon.com.au/contents/AU/EN/0100491502.html
    Hope this helps.

Maybe you are looking for