1

Since I upgraded my system to Ubuntu 20.04, I cannot print anymore:

$ lpq
MG6200 est prêt
no entries

$ lpr feuille.pdf
lpr : Unsupported document-format "application/pdf".

I restarted cups, reinstalled the printers (wifi and usb)
What else can I try?

Zanna
  • 70,465

2 Answers2

0

Try methods described here and tell if it helped or not:

sudo add-apt-repository ppa:thierry-f/fork-michael-gruz sudo apt install cnijfilter2 scangearmp2 cndrvcups-utility

Depends on your device, search for cnijfilter (for printing) or scangearmp (for scanning) in Synaptic package manager (install it via Ubuntu Software).

And finally select install the driver that is match for your device. And it’s OK to install i386 only package on 64-bit Ubuntu.

If these packages have been installed, uninstall them:

sudo apt purge cnijfilter2 scangearmp2 cndrvcups-utility && sudo apt autoremove

and try again.

During upgrade kernel and some system libs have been changed. So it could be the main cause of your issue.

Gryu
  • 7,559
  • 9
  • 33
  • 52
  • So far I failed. The package cndrvcups-utility does not exist. The two others cnijfilter2 scangearmp2 did install properly. I still get the same error. It seems that the printer (USB or Network) is not installed with the adequate packages. Thanks for your support. – user1079576 May 09 '20 at 08:26
0
  1. Remove ippusbxd by running this command in terminal:

    sudo apt remove ippusbxd
    
  2. Delete and reinstall the printer using the GUI printer utility

  3. Print a test page

This worked for me after hours of troubleshooting, I hope it works for you as well!

You might also want to read these related questions where more knowledgeable people than me explain how all printers now are "network printers" or something like that. Apparently removing ippusbxd isn't the most elegant solution, but as long as it works I'm happy :-)

Zanna
  • 70,465
rinre
  • 21