1

Newbie here.

Both my Canon LBP3300 and (wireless) MG5460 printers work on my network form Windows. I installed Ubuntu 14.04 on a desktop, went to Canon and downloaded the Linux driver package (cndrvcups-common_2.80-1_i386.deb) and installed it. The MG5460 was "seen" as a netwrok printer so I added it and it looked successful. When I tried to print a test page, the printer display showed that it was receiving data but then nothing. Ubuntu displayed "Idle - Waiting for job to complete.."

I have deleted the printer and re-installed several times with the same result.

If I could get printing to work I would seriously consider migrating to Ubuntu as it does everything else I need.

Cheers, Stephen Hicks

Korkel
  • 1,158
  • 1
  • 10
  • 26

1 Answers1

1

Downloading and installing driver software for this printer from the Canon site resulted in an unmet dependency on libtiff4 during the install. I found the key to get the MG5460 working wirelessly on 14.04 under Dependency is not satisfiable: libtiff4 when trying to install Lightworks on Ubuntu 14.04.

So…

  1. Manually install libtiff4 for 14.04 as prescribed in the answer on that post.

  2. Download the install for the printer from the Canon site. (At time of writing, this was titled 'MG5400 series IJ Printer Driver Ver. 3.80 for Linux (debian Packagearchive)'

  3. Unzip and run the installation for the Canon driver.

    tar -xzf cnijfilter-mg5400series-3.80-1-deb.tar.gz
    cd cnijfilter-mg5400series-3.80-1-deb
    sudo ./install.sh
    

    Provided all other dependencies are met, the installation also asks all the necessary questions to setup the printer over WiFi.

Immediately after installation, I was able to print.

David Foerster
  • 36,264
  • 56
  • 94
  • 147