试装兄弟mfc1816一体机打印驱动
Tofloor
poster avatar
zrqlx126
deepin
2020-09-06 00:22
Author
本帖最后由 zrqlx126 于 2020-9-5 16:30 编辑

uos个人版安装后,发现机器上以usb接口连接的兄弟MFC1816一体机无法驱动,使用打印机管理工具无法识别,几经折腾,步骤如下:
一、使用官方驱动,参照以下步骤
  1. # 下载官方驱动安装工具
  2. wget https://download.brother.com/welcome/dlf100414/mfc1810lpr-3.0.1-1.i386.deb
  3. wget https://download.brother.com/welcome/dlf100416/mfc1810cupswrapper-3.0.1-1.i386.deb
  4. # 安装依赖
  5. sudo apt update && sudo apt install lib32z1 -y
  6. # 安装驱动
  7. sudo dpkg --force-all -i *.deb
Copy the Code

二、使用开源驱动,参照以下步骤
1.下载本帖的附件Brother-MFC-1810-series.tar.gz,在终端中切换到该目录
2.识别usb打印机,并安装驱动文件
  1. # 解压文件
  2. tar xzvf Brother-MFC-1810-series.tar.gz
  3. # 获取打印机位置列表
  4. uris=$(sudo lpinfo -v)
  5. # 获取兄弟mfc1816打印机位置
  6. for uri in $uris
  7. do  
  8.   URI=$(echo $uri | grep MFC-1810 | grep usb)
  9.   if [ "$URI" != '' ];then
  10.     break;
  11.   fi
  12. done
  13. # 安装打印机
  14. sudo lpadmin -p Brother-MFC-1810-series -E -v $URI -P Brother-MFC-1810-series.ppd
Copy the Code

至此,打印机安装完成,可以愉快的打印了。
Reply Favorite View the author
All Replies
avatar
Fredoong
deepin
2020-09-06 00:32
#1
有Linux驱动是好事,到处都没有的打印机才麻烦。
Reply View the author