升级到Linux Mint 18后,扫描仪不再工作了

时间:2017-05-10 13:21:56

标签: ubuntu linuxmint scanning epson

从Linux Mint 17.3迁移到Linux Mint 18.1后,我的扫描仪不再工作了。我的扫描仪是Epson Stylus SX445W。

在执行命令dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:appcompat-v7:25.0.1' compile 'com.android.support:recyclerview-v7:25.0.1' compile 'com.android.support:cardview-v7:25.0.1' compile 'com.android.support:design:25.0.1' } 之前,我只能看到一个扫描仪。现在我有两个,而只有一个扫描仪连接到计算机:

scanimage -L

有没有人有这个问题以及如何获得提示来修复它? 谢谢!

1 个答案:

答案 0 :(得分:2)

我终于找到了解决方案。如果可以帮助某人,我会在这里发布。

对于Linux Mint 18之前的版本,必须使用Epson驱动程序才能使扫描仪正常工作,但现在情况并非如此(支持开箱即用)。

为此,我们需要删除此驱动程序的deb包:packages isane *。

删除它们后,执行以下命令:

$ sudo sane-find-scanner

  # sane-find-scanner will now attempt to detect your scanner. If the
  # result is different from what you expected, first make sure your
  # scanner is powered up and properly connected to your computer.

  # No SCSI scanners found. If you expected something different, make sure that
  # you have loaded a kernel SCSI driver for your SCSI adapter.

could not fetch string descriptor: Pipe error
could not fetch string descriptor: Pipe error
found USB scanner (vendor=0x04b8, product=0x0884) at libusb:002:010
  # Your USB scanner was (probably) detected. It may or may not be supported by
  # SANE. Try scanimage -L and read the backend's manpage.

  # Not checking for parallel port scanners.

  # Most Scanners connected to the parallel port or other proprietary ports
  # can't be detected by this program.

之后,我可以使用命令scanimage -L

在列表中看到我的扫描仪
$ scanimage -L
device `epson2:libusb:002:010' is a Epson PID 0884 flatbed scanner

然后我们可以使用XSane再次使用扫描仪!

相关问题