Jump to content

gregor

Members
  • Posts

    111
  • Joined

  • Last visited

Posts posted by gregor

  1. 90% of my pictures probably have a sky

    If it has one its usually some shade of blue..... I rarely bother taking pictures of rain!

     

    You could test what part of an image is more blue. Try this (you need to have perl-GD RPM package installed):

     

    whereissky.pl:

    #! /usr/bin/env perl
    
    $^W = 1; use strict; use GD;
    
    my $true = 1;
    
    my $false = 0;
    
    
    
    my $image = new GD::Image($ARGV[0]);
    
    my ($width,$height) = $image->getBounds();
    
    
    
    $width = $width - ($width%2);
    
    $height = $height - ($height%2);
    
    
    
    print "$width x $heightn";
    
    
    
    my ($x, $y);
    
    my ($nw, $ne, $sw, $se) = (0, 0, 0, 0);
    
    
    
    for ($y = 1; $y <= $height; $y++) {
    
    for ($x = 1; $x <= $width; $x++) {
    
     my $index = $image->getPixel($x-1,$y-1);
    
     my ($r,$g,$b) = $image->rgb($index);
    
    
    
     if (($r > $b) or ($g > $b)) {
    
    	 $b = 0;
    
     }
    
     if ($y > ($height / 2)) {
    
    	 if($x > ($width / 2)) {
    
       $se += $b;
    
    	 } else {
    
       $sw += $b;
    
    	 }
    
     } else {
    
    	 if($x > ($width / 2)) {
    
       $ne += $b;
    
    	 } else {
    
       $nw+= $b;
    
    	 }
    
     }
    
    }
    
    }
    
    
    
    
    
    print "NW:$nw, NE:$ne, SW:$sw, SE:$sen";
    
    my $up = $nw + $ne;
    
    my $down = $sw + $se;
    
    my $right = $ne + $se;
    
    my $left = $nw + $sw;
    
    print "Up: $up, Down: $down, Right: $right, Left: $leftnn";
    
    
    
    sub max {
    
    my $max = $up;
    
    my $foo;
    
    foreach $foo (@_) {
    
     $max = $foo if $max < $foo;
    
    }
    
    return $max;
    
    }
    
    
    
    my $max = max($up, $down, $left, $right);
    
    
    
    print "Sky is ";
    
    if ($up == $max) {
    
    print "UP";
    
    } elsif ($left == $max) {
    
    print "on the LEFT";
    
    } elsif ($right == $max) {
    
    print "on the RIGHT";
    
    } else {
    
    print "DOWN";
    
    }
    
    print ".n";

     

    Usage:

    ./whereissky.pl test.jpg

     

    This script is VERY slow.

  2. This needs some sort of pattern recognition to determine if they have 'the sky' on the left or right depending which way I rotated the camera and then I can rotate eith 90 or 270.

     

    This seems as something that camera should support (it should detect position)...

     

    Do you always have a sky? Is sky always blue?

  3. I want to recursively run through my photo directories and rotate any of the pictures I have that were taken sideways.

     

    jpegtran - lossless transformation of JPEG files

     

     

    To do this I guess I need to key on sky or something and try and guess which way is up.  

     

    How many photos do you have? More than 1000?

     

    If you don't have that many you could rotate all of them with jpegtran and than delete incorect ones with gqview (disable confirm delete).

  4. how to make it boot faster. what do i need not need. what can i tweak in the MCC to achieve this?? thx... example, all i need r basic apps, not like 4 terminals, or a bunch of text editors, basically the best of all categories. thx...

     

    I have changed the order services are started. Note that this not very safe, but it works for me (Duron 750MHz).

    [gregor@localhost rc5.d]$ ls
    
    K15postgresql@  S01gpm@   S06iptables@  S13cups@    S75keytable@  S90vmware@
    
    K15proftpd@     S02dm@    S10network@   S20random@  S85httpd@     S95kheader@
    
    K30postfix@     S03xfs@   S11internet@  S26apmd@    S90crond@     S99devfsd@
    
    K89portmap@     S04alsa@  S12syslog@    S40atd@     S90mysql@     S99local@

  5. anybody here knows of an application that optimizes jpeg images? my kodak camera is producing insanely big jpg files which i think the bulk is placed on the headers. i have used a windows app that does this without loss (or minimal in rare cases) but i dont want to use a windows app here at home if i can help it.

     

    jpegtran - lossless transformation of JPEG files

  6. In MDK9.2 RC2 (also RC1) KDE is freezing on my machine at random times. Sometimes when I start KDE, sometimes when I navigate K-menu and sometimes when I try to install new software.

     

    Screen freezes, mouse doesn't move, keyboard doesn't respond (e.g. I can't turn on num/caps/scroll lock). Note: leds for num/caps/scroll are NOT blinking.

     

    I can't restart X with: CTRL+ALT+Backspace

    I can't log in to this machine with ssh.

    I can't reboot with: Sys Rq (ALT + PrintScreen) + B

     

    It doesn't freeze in GNOME or IceWM! I can also recompile kernel without errors.

     

    I have upgraded from 9.0 to 9.2RC1 and then to 9.2RC2. I use XFS filesystem.

     

    I have AMD K6 350MHz downclocked to 266Mhz (because in MDK 9.0 I couldn't recompile kernel on 350Mhz - signal 11).

     

     

    What info should I provide in a bug report?

  7. Frustrated by using OS that can blow up at any time I was wondering what's all this fuss about Linux, so I tried it. I liked some things, disliked others, but it was a challenge that I accepted and started trying various distributions.

     

    I migrated to Linux when I started developing in PHP.

     

    Now I feel comfortable using it because it doesn't get in my way. I don't want to be a hostage of a software I 'm using ever again.

  8. I can't restart Apache on RedHat 7.2.

     

    service httpd restart

    /var/log/httpd/error_log:

    (98)Address already in use: make_sock: could not bind to port 80

     

    If I use different port in httpd.conf I can start Apache without a problem.

     

    Also:

    netstat -pantu | grep 80

    reports states:

    SYN_RECV, CLOSE_WAIT, ESTABLISHED,

    and it doesn't return any program name.

  9. What you could do is add the media as described, but when you opent he install software program choose "All packages by: Upgrade availability".  That would just show the packages which were upgrades to the ones you already have.  I tend to use this option instead of the dedicated update tool anyway.

     

    I had to disable some extra sources first but that works. Thanks everyone.

     

    Still it would be nice to know how to get "Mandrake update" to use local files.

  10. Actually, anon did answer your question.  Log into you Mandrake Control Center.  Enter into your Software Sources Manager.  Push the add button.  Push the removable device button.  Then add the path or mount point where you will put the CD.  For instance, one of mine is:  removable://mnt/cdrom/Mandrake/RPMS2

     

    That doesn't work. I need to use "Mandrake update". There would be no sense in installing all the updates (e.g for the software that isn't even installed).

     

    If I add a source "Security updates", "Mandrake update" doesn't find any packages.

     

    And if I do what you have said I should have done, I still have to select a mirror when I run "Mandrake update".

     

    I guess I need some other files from:

    ftp://ftp.univie.ac.at/systems/linux/Mand...dates/9.1/base/

     

    What do you think? Has anyone tried this?

  11. You do not have to add them to urpmi for mdk control centre, a site is already added. In your start menu, is an option for Mandrake update, you can add more sites if you want in mdk control centre, sources manager.

     

    Thank you for answering, but this is not what I have asked. I have a dial up connection and I can't afford to download all updates, so I asked a friend to do it for me.

     

    I have packages on a CD. How can I use them to update MDK?

  12. How can I create a local copy of MDK updates? Do I need anything else other than RPM files?

     

    How do I add these local RPM files to urpmi so that I can update MDK in MDK Control Center?

     

    I have tried this:

    rpmi.addmedia --update updates 'file://home/gregor/updates/' with ./hdlist.cz

    but rpmdrake doesn't find any packages to update

  13. * Install LILO in the Linux root partition (i.e., /dev/sda3), not into the MBR. You can, however, configure a choice of different Linux kernel images for LILO.

     

    http://sdb.suse.de/en/sdb/html/nt.html

     

    Important: Do not install LILO on the disk's MBR. This will stop W2K from booting. Instead, make sure it is installed on the /boot partition (which should be the second partition on the disk).

     

    That is why you should install Mandrake. :wink:

  14. What is missing?

     

    root@localhost gregor]# pear list-all
    
    HTTP/1.0 0 X
    
    Content-type: text/html
    
    
    
    PHP Warning:  Unknown(): Unable to load dynamic library './xml.so' - ./xml.so: c                                            annot open shared object file: No such file or directory in Unknown on line 0
    
    PHP Warning:  Unknown(): Unable to load dynamic library './xmlrpc.so' - ./xmlrpc                                            .so: cannot open shared object file: No such file or directory in Unknown on lin                                            e 0
    
    
    
    Fatal error: Call to undefined function:  xml_parser_create() in /usr/share/pear/XML/RPC.php on line 620

  15. (Actually, it is trying to talk to the scanner via /dev/usbscanner anyway...)

     

    [hp4200] sane_hp4200_init: configuration file not found, defaulting to /dev/usbscanner

     

    As I wrote, configuration file is

    HP4200.conf

    and NOT

    hp4200.conf.

     

    If I modify the source to use sanei_usb_open instead of open, I get:

     

    hp4200] sane_hp4200_open (/dev/usb/scanner0, 0xbffff224)
    
    [hp4200] find_device
    
    [sanei_usb] sanei_usb_open: trying to open device `/dev/usb/scanner0'
    
    [sanei_usb] sanei_usb_open: opened usb device `/dev/usb/scanner0' (*dn=0)
    
    [sanei_usb] sanei_usb_get_vendor_product: device 0: vendorID: 0x03f0, productID:
    
    0x0105
    
    [dll] sane_control_option(handle=0x8071138,option=0,action=0,value=0xbffff2c0,in
    
    fo=(nil))
    
    [hp4200] sane_control_option
    
    [dll] sane_control_option(handle=0x8071138,option=0,action=0,value=0xbffff238,in
    
    fo=(nil))
    
    [hp4200] sane_control_option
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=0)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=1)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=2)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=3)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=4)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=5)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_control_option(handle=0x8071138,option=5,action=0,value=0x8051d18,inf
    
    o=(nil))
    
    [hp4200] sane_control_option
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=6)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_control_option(handle=0x8071138,option=6,action=0,value=0x8051d1c,inf
    
    o=(nil))
    
    [hp4200] sane_control_option
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=7)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=8)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=9)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=10)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_control_option(handle=0x8071138,option=3,action=0,value=0xbffff234,in
    
    fo=(nil))
    
    [hp4200] sane_control_option
    
    [dll] sane_control_option(handle=0x8071138,option=4,action=0,value=0xbffff234,in
    
    fo=(nil))
    
    [hp4200] sane_control_option
    
    [dll] sane_control_option(handle=0x8071138,option=3,action=0,value=0xbffff2bc,in
    
    fo=(nil))
    
    [hp4200] sane_control_option
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=5)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_control_option(handle=0x8071138,option=5,action=1,value=0xbffff2b8,in
    
    fo=0xbffff238)
    
    [hp4200] sane_control_option
    
    [dll] sane_control_option(handle=0x8071138,option=4,action=0,value=0xbffff2bc,in
    
    fo=(nil))
    
    [hp4200] sane_control_option
    
    [dll] sane_get_option_descriptor(handle=0x8071138,option=6)
    
    [hp4200] sane_get_option_descriptor
    
    [dll] sane_control_option(handle=0x8071138,option=6,action=1,value=0xbffff2b8,in
    
    fo=0xbffff238)
    
    [hp4200] sane_control_option
    
    [dll] sane_start(handle=0x8071138)
    
    [hp4200] sane_start
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 2, index = 3,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 153, index = 0
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 102, index = 0
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 204, index = 0
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 51, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 22, index = 3,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 66, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 6, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 112, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 112, index = 0
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 7, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 8, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 7, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [hp4200] Writing registers[sanei_usb] sanei_usb_control_msg: rtype = 0x40, req =
    
    1, value = 7, index = 1, len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 8, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 2, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 9, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 10, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 11, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 10, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 12, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 96, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 13, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 47, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 14, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 19, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 15, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 6, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 16, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 23, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 17, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 1, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 18, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 3, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 19, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 3, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 20, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 5, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 21, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 22, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 23, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 11, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 24, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 2, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 25, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 26, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 27, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 28, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 13, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 29, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 33, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 30, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 31, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 32, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 33, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 34, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 35, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 36, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 37, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 38, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 39, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 40, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 41, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 1, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 42, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 43, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 44, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 63, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 45, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 255, index = 0
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 46, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 47, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 2, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 48, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 49, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 50, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 51, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 52, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 53, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 32, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 54, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 55, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 48, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 56, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 57, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 58, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 59, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 60, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 61, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 62, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 63, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 64, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 65, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 66, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 6, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 67, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 29, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 68, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 69, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 19, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 70, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 71, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 72, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 2, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 73, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 83, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 74, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 75, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 100, index = 0
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 76, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 77, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 78, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 79, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 64, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 80, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 40, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 81, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 63, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 82, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 83, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 84, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 85, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 16, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 86, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 8, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 87, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 23, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 88, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 59, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 89, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 255, index = 0
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 90, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 91, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 92, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 93, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 94, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 95, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 96, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 97, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 98, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 99, index = 1,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 100, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 101, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 102, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 103, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 104, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 105, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 106, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 107, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 108, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 109, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 110, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 111, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 112, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 112, index = 0
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 113, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 114, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 115, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 116, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 117, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 118, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 119, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 120, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 121, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 122, index = 1
    
    , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,
    
    len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 123, index = 1                                            , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,                                             len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 124, index = 1                                            , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,                                             len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 125, index = 1                                            , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,                                             len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 126, index = 1                                            , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,                                             len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 127, index = 1                                            , len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 0, index = 0,                                             len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 7, index = 1,                                             len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0xc0, req = 0, value = 0, index = 0,                                             len = 1
    
    [sanei_usb] sanei_usb_control_msg: SCANNER_IOCTL_CTRLMSG error - Input/output error
    
    [hp4200] Writing registers[sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 88, index = 1, len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 43, index = 0, len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0x40, req = 1, value = 2, index = 1, len = 0
    
    [sanei_usb] sanei_usb_control_msg: rtype = 0xc0, req = 0, value = 0, index = 0, len = 1
    
    [sanei_usb] sanei_usb_control_msg: SCANNER_IOCTL_CTRLMSG error - Input/output error
    
    
    
    ....

  16. freshmeat.net

    rpmfind.net

     

    :#:

     

    Easy urpmi

    http://plf.zarb.org/~nanardon/urpmiweb.php

     

    Textstar & other Mandrake RPMS (on the left side)

    http://www.pclinuxonline.com/

     

    Extra games

    http://www.mandrakeusers.org/viewtopic.php?t=4072

     

    Arcade games

    http://linux.newexistence.org/arkade.png

     

    Abuse-SDL is also a nice arcade game (in contrib), but you have to download data files seperatly:

    http://www.labyrinth.net.au/~trandor/abuse/

  17. [dll] load: searching backend `hp4200' in `/usr/lib/sane'

    [dll] load: trying to load `/usr/lib/sane/libsane-hp4200.so.1'

    [dll] load: dlopen()ing `/usr/lib/sane/libsane-hp4200.so.1'

    [dll] init: initializing backend `hp4200'

    [sanei_debug] Setting debug level of hp4200 to 128.

    [hp4200] sane_hp4200_init

    [sanei_debug] Setting debug level of sanei_usb to 128.

    usb_os_init: Found USB VFS at /proc/bus/usb

    usb_set_debug: Setting debugging level to 255 (on)

    [sanei_usb] sanei_usb_init: device 0x0000/0x0000 looks like a root hub

    [sanei_usb] sanei_usb_init: device 0x046d/0xc00c doesn't look like a scanner (0/3)

    [sanei_usb] sanei_usb_init: found libusb device (0x03f0/0x0105) at libusb:001:003

    [sanei_usb] sanei_usb_init: device 0x0000/0x0000 looks like a root hub

    [sanei_usb] sanei_usb_init: found 1 devices

    [hp4200] attach_matching_devices(usb 0x03f0 0x0105)

    [sanei_usb] sanei_usb_find_devices: vendor=0x03f0, product=0x0105, attach=0x4058b1f0

    [hp4200] attach

    [hp4200] add_device(libusb:001:003)

    [hp4200] find_device

    [hp4200] add_device: open(libusb:001:003) failed: No such file or directory

    [dll] init: backend `hp4200' is version 1.0.0

    [hp4200] sane_hp4200_get_devices (0xbffff218, 0)

×
×
  • Create New...