如何使我的 Brother DCP-J315W 扫描仪在 Ubuntu 17.10、19.10 和 20.04 上工作?

如何使我的 Brother DCP-J315W 扫描仪在 Ubuntu 17.10、19.10 和 20.04 上工作?

如何使我的 Brother DCP-J315W 扫描仪在 Ubuntu 17.10、19.10 和 20.04 上工作?


全新安装 Ubuntu 后,尝试...

不要忘记打开你的 DCP-J315W 并将其连接到 USB 端口。

安装任何新更新:

sudo apt-get update
sudo apt-get upgrade

安装sane(仅适用于 Ubuntu 17.10)libsane-extras

sudo apt-get install sane
sudo apt-get install libsane-extras

安装libusb-0.1-4

sudo apt-get install libusb-0.1-4

在此处下载linux-brprinter-installer-2.2.1-1脚本(驱动程序安装工具链接):

http://support.brother.com/g/b/downloadlist.aspx?c=es&lang=es&prod=dcpj315w_eu_as&os=128&flang=English

对文件进行压缩:

gunzip linux-brprinter-installer-2.2.1-1.gz

以 root 身份运行脚本,当询问 DeviceURI 时,选择“否”。

sudo -i
bash linux-brprinter-installer-2.2.1-1 DCP-J315W
exit

将 libs 复制到所需的文件夹:

sudo cp /usr/lib64/sane/* /usr/lib/x86_64-linux-gnu/sane
sudo cp -r /usr/lib64/* /usr/lib

此时扫描仪应该可以工作。如果不行,请尝试重新启动。

这些命令应返回如下所示的输出:

$ sane-find-scanner
found USB scanner (vendor=0x04f9 [Brother], product=0x0254 [DCP-J315W]) at libusb:002:005

$ brscan-skey
$ brscan-skey -l
DCP-J315W         : brother3:bus1;dev2  : USB                  Active

$ scanimage -L
device `brother3:bus1;dev2' is a Brother DCP-J315W USB scanner

相关内容