0

I am having problems installing my Canon MG6350 multifunction printer drivers on Ubuntu 14.04. When I run the install.sh in terminal I get an error that libtiff4 is not installed. Ubuntu 14.04 has libtiff5. These drivers where made to be compatible with Ubuntu 12.04. How can I fix my problem ? Installing old libtiff4, would work for me ? If so, how ?

Thanks in advance !

3 Answers3

2

I've just had this problem while trying to install drivers for my ip3600 on 14.04, alongside a libcupsys2 dependancy. This is the best descripton of how to solve it: http://www.hrupin.com/2010/12/linux-ubuntu-10-04-driver-for-canon-ip3600-ij-printer

Although it only describes how to change the libcupsys2 issue, it's the same method for libtiff4. Your basically changing the code in the driver to look for libtiff5, not libtiff4.

Seems to have got me up and running. Hope it helps!

  • I can confirm that this works for the Canon PIXMA MG2200 driver on Ubuntu 20.04, in case this is helpful to anyone else. – Aweston Aug 24 '21 at 12:43
1

I had the same issue and hacked a solution. Feel free to try it.

1) Install libtiff4 from here

1a) I'm on amd64, which clashed with an already installed libtiff4:i386, which I removed:

sudo apt-get remove libtiff4:i386

then,

sudo dpkg -i libtiff4_3.9.7-2ubuntu1_amd64.deb

[I didn't bother checking to see what depended on libtiff4:i386 on my system, so do this at your own risk. I was feeling brave/reckless]

2) Installed the canon driver from here, and executed install.sh

It is disappointing that there hasn't been an update to this driver since 2012.

Printer options for the official driver are scarce but the quality is fairly decent. I couldn't get the default CUPS+Gutenprint v5.2.10-pre2 driver to work at all. However, I have kept it installed as it does show the ink level, which is handy.

Cheers

0

A little more googling led me to this - Easily modify dependencies of a .deb file - a bash script allowing you to vi edit the control file.

About five minutes work and I had the driver installed.

  • 1
    Even if you link only to ubuntuforums.org, it still would be better if you provide the script and steps here and use the link only to give credit to the source. Even there contents and links can change and then your answer would be a dead end. – Videonauth May 24 '16 at 15:29