如何配置 Brother DCP-7030 扫描仪?

如何配置 Brother DCP-7030 扫描仪?

我可以使用扫描仪附带的 Windows 驱动程序 CD 通过 wine 安装扫描仪驱动程序吗?

我正在使用 Brother DCP-7030 扫描仪,我的系统运行的是 Ubuntu 11.10。
我需要帮助来设置扫描。

我使用 Virtual Box 在 Mac 上运行 Ubuntu 11.10。

答案1

不建议您使用 wine 安装任何硬件的驱动程序,因为它们无法正确集成到 ubuntu 中。

但是这里有一步一步的指南来让驱动程序正常工作(如果您使用的是 64 位系统):

首先拔掉打印机的插头。

打开终端并复制并粘贴以下命令

sudo apt-get remove brother-lpr-drivers-laser brother-cups-wrapper-laser

(删除任何可能导致冲突的现有驱动程序)

sudo apt-get install --reinstall cups csh lib32stdc++6

(重新安装依赖项)

sudo mkdir -p /var/spool/lpd/
sudo mkdir -p /usr/share/cups/model/

(为驱动程序创建目录)

mkdir -p ~/Downloads/brother/
cd ~/Downloads/brother/

(确定下载位置)

wget http://pub.brother.com/pub/com/bsc/linux/dlf/brdcp7030lpr-2.0.2-1.i386.deb
wget http://pub.brother.com/pub/com/bsc/linux/dlf/cupswrapperDCP7030-2.0.2-1.i386.deb

(下载驱动程序)

sudo dpkg -i --force-architecture brdcp7030lpr-2.0.2-1.i386.deb
sudo dpkg -i --force-architecture cupswrapperDCP7030-2.0.2-1.i386.deb

(安装并配置驱动程序包)

sudo ln -s /usr/lib/cups/filter/brlpdwrapper* /usr/lib64/cups/filter/

(链接驱动文件)

现在插入打印机并从“系统设置”->“打印机”继续安装过程

要启用扫描:

sudo apt-get install --reinstall sane-utils xsane xsane-common

从兄弟主页下载扫描仪驱动程序(64 位): http://www.brother.com/cgi-bin/agreement/agreement.cgi?dlfile=http://www.brother.com/pub/bsc/linux/dlf/brscan3-0.2.11-4.amd64.deb&lang=English_gpl

(32 位) http://www.brother.com/cgi-bin/agreement/agreement.cgi?dlfile=http://www.brother.com/pub/bsc/linux/dlf/brscan3-0.2.11-4.i386.deb&lang=English_gpl

插入并打开扫描仪,打开终端并输入

sudo dpkg -i --force-all ~/Downloads/brscan3-0.2.11-4.amd64.deb

(适用于 64 位)

sudo dpkg -i --force-all ~/Downloads/brscan3-0.2.11-4.i386.deb

(适用于 32 位)

检查是否安装正确

dpkg  -l  |  grep  Brother

输出看起来应该是这样的:

ii  brdcp7030lpr:i386       2.0.2-1         Brother DCP-7030 LPR driver 
ii  cupswrapperdcp7030:i386       2.0.2-1         Brother DCP7030 CUPS wrapper driver

最后输入

sudo gedit /lib/udev/rules.d/40-libsane.rules

以及此行之前的以下文本(位于底部很深处)

'# 以下规则将禁用设备的 USB 自动暂停功能'

要添加的文本:

# Brother scanners
ATTRS{idVendor}=="04f9", ENV{libsane_matched}="yes"

立即重新启动计算机,它应该就可以正常工作了。

答案2

直到我安装更新的驱动程序后,扫描仪才开始工作:

brscan3-0.2.11-5.amd64.deb(而不是 brscan3-0.2.11-4.amd64.deb)

http://www.brother.com/cgi-bin/agreement/agreement.cgi?dlfile=http://www.brother.com/pub/bsc/linux/dlf/brscan3-0.2.11-5.amd64.deb&lang=English_gpl

从此页面。

http://welcome.solutions.brother.com/bsc/public_s/id/linux/en/download_scn.html

答案3

我还必须做以下事情

http://localhost:631

然后在管理员的 CUPS 下,我点击了“添加打印机和类别”

其余步骤都很直观。如果之前在系统->管理->打印中将 Brother-7030 打印机设置为默认打印机,请确保将其删除。

我的 Brother 7030 现在运行正常。

答案4

我主要是为了下次重新安装 ubuntu 而回答这个问题,但也许我会帮助别人。在 Brother 的页面上,有一个工具可以自动完成安装打印机和扫描仪驱动程序的整个过程。此工具名为Driver Install Tool,可用https://support.brother.com/g/b/downloadlist.aspx?c=us_ot&lang=en&prod=dcp7030_all&os=128#SelectLanguageType-625_0_1。它将下载所有 deb 包和 apt 依赖项(我已经苦苦挣扎了 2 天,没有这个工具,我认为问题是缺少 libusb 包)。我很确定,这个工具也足以安装其他 Brother 设备。

相关内容