Home
Categories
WIKI
Topic
User
LANGUAGE:
中文
English
试装兄弟mfc1816一体机打印驱动
Experiences and Insight
688
views ·
1
replies ·
To
floor
Go
zrqlx126
deepin
2020-09-06 00:22
Author
本帖最后由 zrqlx126 于 2020-9-5 16:30 编辑
uos个人版安装后,发现机器上以usb接口连接的兄弟MFC1816一体机无法驱动,使用打印机管理工具无法识别,几经折腾,步骤如下:
一、使用官方驱动,参照以下步骤
# 下载官方驱动安装工具
wget https://download.brother.com/welcome/dlf100414/mfc1810lpr-3.0.1-1.i386.deb
wget https://download.brother.com/welcome/dlf100416/mfc1810cupswrapper-3.0.1-1.i386.deb
# 安装依赖
sudo apt update && sudo apt install lib32z1 -y
# 安装驱动
sudo dpkg --force-all -i *.deb
Copy the Code
二、使用开源驱动,参照以下步骤
1.下载本帖的附件
Brother-MFC-1810-series.tar.gz
,在终端中切换到该目录
2.识别usb打印机,并安装驱动文件
# 解压文件
tar xzvf Brother-MFC-1810-series.tar.gz
# 获取打印机位置列表
uris=$(sudo lpinfo -v)
# 获取兄弟mfc1816打印机位置
for uri in $uris
do
URI=$(echo $uri | grep MFC-1810 | grep usb)
if [ "$URI" != '' ];then
break;
fi
done
# 安装打印机
sudo lpadmin -p Brother-MFC-1810-series -E -v $URI -P Brother-MFC-1810-series.ppd
Copy the Code
至此,打印机安装完成,可以愉快的打印了。
Reply
Like 0
Favorite
View the author
All Replies
Fredoong
deepin
2020-09-06 00:32
#1
有Linux驱动是好事,到处都没有的打印机才麻烦。
Reply
Like 0
View the author
Please
sign
in first
Featured Collection
Change
[Tutorial] deepin25 WSL Offline Installation Guide
UOS AI 2.8 Released! Three New Intelligent Agents & Major Evolution
Solid Q&A | deepin 25 Common Questions – The Immutable System Edition
New Thread
Popular Events
More
uos个人版安装后,发现机器上以usb接口连接的兄弟MFC1816一体机无法驱动,使用打印机管理工具无法识别,几经折腾,步骤如下:
一、使用官方驱动,参照以下步骤
二、使用开源驱动,参照以下步骤
1.下载本帖的附件Brother-MFC-1810-series.tar.gz,在终端中切换到该目录
2.识别usb打印机,并安装驱动文件
至此,打印机安装完成,可以愉快的打印了。