适合佳能新款墨盒打印机的驱动程序吗?

适合佳能新款墨盒打印机的驱动程序吗?

我对新款佳能墨盒打印机(尤其是 Pixma G5050)的潜在经济性很感兴趣。但据我所知,佳能的任何常规网站(欧洲、美国、亚洲……)都没有提供 Linux 驱动程序。

我尝试过的任何 CUPS 网站上都没有找到关于它的任何参考资料...

这是否意味着无法在 Ubuntu 上使用这些打印机?

谢谢任何确认(或者最好提供一个解决方案!)。

答案1

没有可用的 Linux 驱动程序

是的

canon-europe.com > 支持 >驱动程序>pixma g5050>Linux 64 位
适用于 Linux 的 IJ 打印机驱动程序版本 5.90,发布日期:2019 年 9 月 10 日

PPD 文件是cnijfilter2-source-5.90-1/ppd/canong5000.ppd

在 CUPS 中,驱动程序是Canon G5000 series

在 arch-linux 中,驱动程序包是cnijfilter2

司机无法删除临时文件使用后
作为解决方法我使用

#!/usr/bin/env bash
# remove canon printer temp files older than x minutes
# run this script as root
minutes=5
# temp_path: folder with the cnij* temporary files
temp_path=/var/tmp # arch linux
#temp_path=/var/tmp/*cups*/tmp # nixos linux
while true
do    
  date    
  find $temp_path -maxdepth 1 -name 'cnij*' -mmin +${minutes} \
    -exec rm -v '{}' \;
  sleep ${minutes}m
done

相关内容