<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Tue, May 12, 2015 at 7:23 PM, Olaf Meeuwissen <span dir="ltr"><<a href="mailto:olaf.meeuwissen@avasys.jp" target="_blank">olaf.meeuwissen@avasys.jp</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
Ron Falkowski writes:<br>
<br>
> Thank you very much for the help. The V800 now works perfectly, at least as<br>
> root. "scanimage -L" still does not find the new scanner as a normal user.<br>
> Just changing the permissions with "chmod a+rw /proc/bus/usb/001/013" did<br>
> not seem to work. Going through the FAQ eventually led me to tools/udev. I<br>
> added the following lines to libsane.rules:<br>
><br>
> ATTRS{idVendor}=="04b8", ATTRS{idProduct}=="0151", MODE="0664",<br>
> GROUP="scanner", ENV{libsane_matched}="yes"<br>
> # EPSON GT-X980 | EPSON Perfection V800 Photo<br>
><br>
> which is just the lines for the V700 with the product ID changed. However<br>
> I'm not sure what to do with this new file. Rebuilding after I changed this<br>
> file seemed to have no effect.<br>
<br>
</span>That file needs to be installed in /etc/udev/rules.d/.  This is probably<br>
not done as part of the regular `make install` as it may not be needed<br>
for some setups.  You can copy it there with any name as long as it ends<br>
with a .rules suffix.  After the copy, run<br><br>
  sudo udevadm control --reload_rules<br>
<br>
to make sure that udev notices and reconnect the device.<br>
<div class="HOEnZb"><div class="h5"><br>
Hope this helps,<br>
--<br>
Olaf Meeuwissen, LPIC-2           FLOSS Engineer -- AVASYS CORPORATION<br>
FSF Associate Member #1962               Help support software freedom<br>
                 <a href="http://www.fsf.org/jf?referrer=1962" target="_blank">http://www.fsf.org/jf?referrer=1962</a><br>
</div></div></blockquote></div><br><br><div><div><div><div>This worked. Thanks again.<br><br></div>In return I 
have another patch for you all. As it is, the V800s cannot scan with the
 "TPU8x10" source setting. I eventually figured out that this is because
 the other scanners that have this option are listed explicitly in 
e2_discover_capabilities(). This needs to be changed to include the 
V800.<br><br></div>epson2-ops.c Line 718:<br>        if (e2_model(s, "GT-X800") || e2_model(s, "GT-X900")) {<br><br></div>change to:<br>        if (e2_model(s, "GT-X800") || e2_model(s, "GT-X900") || e2_model(s, "GT-X980")) {<br><br></div>I'll
 leave writing the patch and committing it to those who know what 
they're doing in case anything else needs to be changed too, but this 
worked for me.</div></div>