打印机打印一半页面

打印机(佳能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 

不幸的是,您的打印机被Open Printing 列为纸张。 我认为这意味着需要更多的工作才能使您的打印机正常运行。

我确实找到了这个旧的Ubuntu论坛post ,它给了我们一些关于如何从佳能提供的文件安装打印机的说明。

无论如何,你应该:

  1. 从佳能下载.tar文件 。 (请务必阅读并同意该链接上的许可协议。)

     wget http://files.canon-europe.com/files/soft31326/Software/MP190_debian_drivers.tar 
  2. 提取一切。

     tar -xf ./MP190_debian_drivers.tar tar -xf ./MP190_debian_printer.tar tar -xf ./MP190_debian_scangear.tar 
  3. 打开驱动程序包。 您需要在之后修改依赖项。

     dpkg-deb -x cnijfilter-common_3.00-1_i386.deb common dpkg-deb --control cnijfilter-common_3.00-1_i386.deb 
  4. 使用文本编辑器在新的DEBIAN文件夹中打开名为control的文件。 在这里我使用nano ,但你可以使用geditkateleafpad或者what have you

     nano ./DEBIAN/control 
  5. 一行6,列出Depends: ,将libcupsys2更改为libcups2 。 没有必要改变其他任何东西,虽然改变Description:可能会有点乐趣Description: 。 保存并退出。

  6. DEBIAN文件夹复制到common文件夹/

     cp -R ./DEBIAN ./common 
  7. 重新包装驱动程序。

     dpkg -b common cnijfilter-common_3.00-1_i386.deb 
  8. 清理。

     rm -r ./common ./DEBIAN 
  9. cnijfilter-mp190series_3.00-1_i386.deb重复解cnijfilter-mp190series_3.00-1_i386.deb ,修改和重新打包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