Jump to content

gregor

Members
  • Posts

    111
  • Joined

  • Last visited

Everything posted by gregor

  1. 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 seems as something that camera should support (it should detect position)... Do you always have a sky? Is sky always blue?
  3. jpegtran - lossless transformation of JPEG files 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. gregor

    boot time...

    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. 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. You could also add contrib, plf & texstar media: http://plf.zarb.org/~nanardon/ From Zenity README: If you understand, things are just as they are. If you don't understand, things are just as they are. :wink:
  8. http://pgshopping.com/mdkxp/?c=ttrls/dynamicicons
  9. 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.
  10. Now there is nothing on port 80: netstat -pantu | grep 80 doesn't return anything. But I still get the same error.
  11. 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.
  12. 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.
  13. 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?
  14. 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?
  15. 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
  16. http://sdb.suse.de/en/sdb/html/nt.html That is why you should install Mandrake. :wink:
  17. This is how I changed gtk fonts: /usr/share/themes/Galaxy/gtk/gtkrc /usr/share/themes/Galaxy/gtk-2.0/gtkrc fontset = "-*-arial-medium-r-normal--12-*-*-*-*-*-iso8859-15,*-r-*
  18. How did you manage to do that? :? It is the same tool (diskdrake)...
  19. gregor

    Pear in mdk 9.1

    These packes were already installed: php-xml php-xmlrpc But this fixed it: cd /etc mv php.ini.rpmnew php.ini I think php-cli (needed by pear?) installed its own 'php.ini' file.
  20. 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
  21. You mean? Settings -> Configure Editor It seems you can't configure this. Here it is stuck in insert mode.
  22. [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 ....
  23. 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/
  24. Did you use aumix or kmix? Are all the modules loaded (use lsmod)?
×
×
  • Create New...