web-dev-qa-db-ja.com

Ubuntu 16.04のスキャナーEpson L210が動作するようになりました

Epsonから最新のiscanドライバーをインストールしましたが、Ubuntu 16.04のスキャン機能はまだ動作していません。誰にも解決策がありますか?解決済み

1
JuandaS

幸いなことに、私はこの指示に基づいて解決策を見つけました: https://help.ubuntu.com/community/sane および Lubuntu 15.10(64bits)にEpson Scannerをインストールする際の問題 =

私がしたこと:

  • いくつかのパッケージをインストールしました:

    Sudo apt-get install sane sane-utils libsane-extras xsane  
    
  • /etc/sane.d/dll.confファイルを次のように編集します。

    1. 私の場合、リストにないためepkowaを追加するか、epkowaが存在する場合は#の前に削除します
    2. #の前にepson2を追加して、epkowaとの競合を回避します

xsaneを実行すると拒否された許可に関するメッセージがまだありますが、xsaneスキャンはうまく機能しています。解決策は、フォルダーのアクセス許可と/home/username/.sane内のフォルダー/ファイルを755 rwxr xr x ORに変更することです。xsaneをルートとして実行してみてください-Sudo xsane

iscanについても、許可を変更することなく完全に機能します。

2
JuandaS

man 7 saneから:

   If  your  device  isn't  found  but  you  know  that  it  is  supported,  make  sure  that  it is detected by your operating system. For SCSI and USB scanners, use the
   sane-find-scanner tool (see sane-find-scanner(1) for details). It prints one line for each scanner it has detected and some comments (#).  If  sane-find-scanner  finds
   your  scanner  only  as  root but not as normal user, the permissions for the device files are not adjusted correctly. If the scanner isn't found at all, the operating
   system hasn't detected it and may need some help. Depending on the type of your scanner, read sane-usb(5) or sane-scsi(5).  If your scanner (or other  device)  is  not
   connected over the SCSI bus or USB, read the backend's manual page for details on how to set it up.
0
waltinator