打印机(Canon PIXMA MP190)打印成功 - 非常清晰 - 但每打印一页需要等待大约 5 分钟。它正常(快速)打印大约一半页面,然后停止...另一半页面打印非常慢。
我正在运行 14.04。在以前的版本(<= 13.10)中,打印机工作正常。
问题可能出在哪里?清晰度如何?
我不需要这么好的清晰度,但我不知道如何改变它。
我该如何解决这个问题?
我有另一台机器运行 Elementary Isis Beta(我猜是基于 Ubuntu 14.04)。连接到该机器后,打印机工作正常。
相关产出:
# Elementary Isis Beta
$ uname -a
Linux ionica-desktop 3.13.0-29-generic #53-Ubuntu SMP Wed Jun 4 21:00:20 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
# The main machine, running Ubuntu 14.04, having the issue
$ uname -a
Linux laptop 3.13.0-29-generic #53-Ubuntu SMP Wed Jun 4 21:00:20 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
答案1
不幸的是,您的打印机列为镇纸由 Open Printing 提供。我认为这意味着要启动并运行您的打印机将需要更多工作。
我确实找到了这个旧的 Ubuntu 论坛帖子,它从佳能提供的文件中为我们提供了一些有关如何安装打印机的说明。
无论如何,你应该:
下载.tar 文件来自佳能。(请确保您已阅读并同意该链接中的许可协议。)
wget http://files.canon-europe.com/files/soft31326/Software/MP190_debian_drivers.tar
提取所有内容。
tar -xf ./MP190_debian_drivers.tar tar -xf ./MP190_debian_printer.tar tar -xf ./MP190_debian_scangear.tar
解包驱动程序。之后您需要修改依赖项。
dpkg-deb -x cnijfilter-common_3.00-1_i386.deb common dpkg-deb --control cnijfilter-common_3.00-1_i386.deb
control
使用文本编辑器打开新 DEBIAN 文件夹中的文件。这里我使用nano
,但您可以使用gedit
、kate
、leafpad
或what have you
。nano ./DEBIAN/control
第 6 行列出了 ,将其
Depends:
更改libcupsys2
为libcups2
。无需更改任何其他内容,尽管更改 可能会有点有趣Description:
。保存并退出。将
DEBIAN
文件夹复制到common
文件夹/cp -R ./DEBIAN ./common
重新打包驱动程序。
dpkg -b common cnijfilter-common_3.00-1_i386.deb
清理。
rm -r ./common ./DEBIAN
重复对 进行解包、修改和重新打包的过程
cnijfilter-mp190series_3.00-1_i386.deb
。
简而言之:
wget http://files.canon-europe.com/files/soft31326/Software/MP190_debian_drivers.tar
tar -xf ./MP190_debian_drivers.tar
tar -xf ./MP190_debian_printer.tar
dpkg-deb -x cnijfilter-common_3.00-1_i386.deb common
dpkg-deb --control cnijfilter-common_3.00-1_i386.deb
sed -i 's/libcupsys2/libcups2/' ./DEBIAN/control
cp -R ./DEBIAN ./common
dpkg -b common cnijfilter-common_3.00-1_i386.deb
rm -r ./common ./DEBIAN
dpkg-deb -x cnijfilter-mp190series_3.00-1_i386.deb common
dpkg-deb --control cnijfilter-mp190series_3.00-1_i386.deb
sed -i 's/libcupsys2/libcups2/' ./DEBIAN/control
cp -R ./DEBIAN ./common
dpkg -b common cnijfilter-mp190series_3.00-1_i386.deb
rm -r ./common ./DEBIAN
sudo dpkg -i ./cnijfilter-*.deb