如何在 ubuntu 上安装扫描仪 brother dcp-7030

如何在 ubuntu 上安装扫描仪 brother dcp-7030

当我尝试按照此处的说明操作时:扫描仪驱动程序 64 位(deb 包)

当我在 3 中运行此命令时出现此错误:

dpkg -i --force-all   brscan3-0.2.13-1.amd64.deb

错误:

错误:需要对 dpkg 数据库目录 /var/lib/dpkg 具有读/写访问权限

我该如何解决这个问题?我认为这是 Ubuntu 20.04 的新安装。我不知道这意味着什么,我是 Linux 新手。我需要的只是桌面上的一个按钮,以便从扫描仪(即 Brother dcp-7030)扫描文档。

答案1

在 Ubuuntu 20.04 上对我有用的是:

下载驱动程序(不需要“扫描仪设置文件”) https://support.brother.com/g/b/downloadlist.aspx?c=de&lang=de&prod=dcp7030_all&os=128&flang=English

安装驱动程序

sudo dpkg -i brscan3-0.2.13-1.amd64.deb

将用户放入扫描仪组

sudo usermod -aG scanner $USER

设置合理

sudo /usr/local/Brother/sane/setupSaneScan3 -i

复制合理文件

sudo ln -sf /usr/lib64/sane/libsane-brother* /usr/lib/x86_64-linux-gnu/sane

sudo nano /lib/udev/rules.d/60-libsane.rules 

那里添加

# Brother scanners
ATTRS{idVendor}=="04f9", MODE="0660", GROUP="scanner", ENV{libsane_matched}="yes"

以及

sudo nano /etc/sane.d/brother.conf

添加

# Brother USB
# For libusb support for unknown scanners use the following command
# usb <vendor ID> <product ID>
usb 04f9 01eb

相关内容