我在 Ubuntu 12.04 上无法将 Brother DCP-195C 识别为扫描仪。我安装了 Brother 的驱动程序,但扫描程序(例如scangui
或)xsane
无法看到该设备。我检查了一下sane-find-scanner
,扫描仪已列出:
found USB scanner (vendor=0x04f9 [Brother], product=0x0222 [DCP-195C]) at libusb:005:002
我还将 udev 规则添加到/etc/udev/rules.d/60-libsane.rules
:
# Brother
ATTRS{idVendor}=="04f9", ENV{libsane_matched}="yes"
我也尝试将文件从 链接/usr/lib64/
到/usr/lib/
。
我还可以尝试什么?
答案1
尝试这个解决方案,我在网上找到它
打印机
从以下位置下载 LPR 驱动程序和 cupswrapper 驱动程序Brother 解决方案中心
- 创建安装LPR驱动程序所需的目录/var/spool/lpd/dcp195c
- 以 sudo 身份打开终端并转到包含驱动程序的目录
安装 LPR 驱动程序
dpkg -i --force-all dcp195clpr-1.1.2-1.i386.deb
安装 cupswrapper 驱动程序
dpkg -i --force-all dcp195ccupswrapper-1.1.2-2.i386.deb
检查 LPR 驱动程序和 cupswrapper 驱动程序是否已安装
dpkg -l | grep Brother
检查打印机是否在 cups web 界面上
扫描器
- 下载扫描仪驱动程序(适用于 DCP-195C 的 brscan3)
- 打开终端,以 sudo 身份登录并进入驱动程序目录
安装扫描仪驱动程序
dpkg -i --force-all brscan3-0.2.11-2.amd64.deb
检查扫描仪驱动程序是否已安装
dpkg -l | grep Brother
要为普通用户启用扫描仪,请打开并编辑以下文件
nano /lib/udev/rules.d/40-libsane.rule
将以下几行添加到文件末尾并重新启动系统
# Brother scanners ATTRS{idVendor}=="04f9", ENV{libsane_matched}="yes"
答案2
我认为我下载了错误版本的驱动程序(可能是旧的搜索链接)。我再次访问 Brother 网站并使用了他们的下载搜索。我选择了列出的版本这里并安装(它是 brscan3,而不是我之前使用的 brscan)。安装后,它出现在我的程序中,并且运行良好。