在 Ubuntu 上安装 Brother MFC295CN 驱动程序

在 Ubuntu 上安装 Brother MFC295CN 驱动程序

我正在尝试运行打印机驱动程序,但效果不佳。我尝试了以下方法:http://ubuntuforums.org/showthread.php?t=1377270sudo dpkg -i PACKAGE.deb格式。它安装了打印机,但是却无法通过 USB 看到打印机。有什么想法吗?

答案1

你必须遵循指示在本页。我一小时前刚安装了 Brother HL2250DN,它运行正常。

因为这些说明有点难以理解,所以这里是 Ubuntu 的摘要(包含更新的 cups 说明):

(0.如果您是 64 位 Ubuntu 用户:)

sudo apt-get install ia32-libs lib32stdc++

1. 打开打印机

2.下载LPR和cupswrapper驱动程序这一页(您需要.deb 包)。

3.打开终端CTRL+ALT+T

4.安装LPR驱动程序

在终端类型中dpkg -i --force-all downloaded-lpr-driver,其中“downloaded-lpr-driver”是下载的 LPR 驱动程序的 deb 文件名(类似于mfc295cnlpr-1.1.3-1.i386.deb

5.安装 cupswrapper 驱动程序

在终端类型中dpkg -i --force-all downloaded-cups-driver,其中“downloaded-cups-driver”是下载的 cupswrapper 驱动程序的 deb 文件名(类似于mfc295cncupswrapper-1.1.3-1.i386.deb

6. 测试您的安装

dpkg -l | grep Brother 应显示两个驱动程序均已安装。

7. 设置杯子

将浏览器指向http://localhost:631/printers并单击您的打印机。在管理下拉菜单中选择Modify Printer。下一步需要您选择连接类型。

如果您使用 USB 连接打印机,则连接应已设置为类似usb://Brother/(your printer's model name)。如果未列出您的打印机,请转到http://localhost:631/admin并添加您的打印机。

如果您使用网络连接,请选择Discovered Network Printers;如果未发现您的打印机,请选择“LPD/LPR 主机或打印机”或“AppSocket/HP JetDirect”,然后插入lpd://(Your printer's IP address)/binary_p1打印机的正确 IP。

这些例子用于工作配置。

答案2

您可以使用Brother 提供的免费实用程序。通过打开终端并运行以下命令来检索并运行文件(确保您确认并接受许可协议,该协议可以在我链接的页面上找到):

wget http://download.brother.com/welcome/dlf006893/linux-brprinter-installer-2.0.0-1.gz
tar xf linux-brprinter-installer-2.0.0-1.gz
rm linux-brprinter-installer-2.0.0-1.gz
chmod a+x ./linux-brprinter-installer-2.0.0-1
sudo ./linux-brprinter-installer-2.0.0-1

您将被引导完成安装。安装完成后,您的主文件夹中将有一个名为 的项目linux-brprinter-installer-2.0.0-1,您可以安全地删除它。

相关内容