Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 29/07/2011, à 19:40

geekfan

Installer imprimante

Impossible d'installer une imprimante canon pixma IP 1500 sous ubuntu 10, help !!

Hors ligne

#2 Le 31/07/2011, à 12:32

compte supprimé

Re : Installer imprimante

salut;
Regarde ce lien CanonPixmaIP1500
le script

#!/bin/bash

#en télécharge 
wget http://software.canon-europe.com/files/soft22415/software/iP1500Linux.tar.gz

#2. Extract it:

tar -xzf iP1500Linux.tar.gz

#3. Install alien:

sudo apt-get install alien

#4. Convert rpm to deb using alien:

cd iP1500
sudo alien *i386.rpm

#5. Install the deb files:

sudo dpkg -i *.deb

#6. Create symlinks:

cd /usr/lib
sudo ln -s libpng12.so.0 libpng.so.2
sudo ln -s libtiff.so.4 libtiff.so.3
sudo ln -s libxml2.so.2 libxml.so.1

#Note: symlinking libxml1.so.1 is not needed if you have libxml1 installed (step 3). libxml1 is required to use bjcups (pixma management application)

#Update 2010-07-17 by pwyll72: I had to modify the symlinks as follows for lubuntu 10.04 (probably applicable to Ubuntu 10.04 as well:

cd /usr/lib
sudo ln -s /lib/libpng12.so.0 libpng.so.2
sudo ln -s libtiff.so.4 libtiff.so.3
sudo ln -s libxml2.so.2 libxml.so.1

#Furthermore, if at some point, printing develops a problem where some parts of a page are printed but others (like text) are left off, it may be the case that the symlinks need to be updated. Also, the note above about symlinking libxml1.so.1 is unclear to me, I only see a libxml.so.1

#Update 2011-05-29 by rqau: For ubuntu 11.04, if libpng12-dev is not installed, use synaptic to install. Then modify the symlinks as follows:

cd /usr/lib
sudo ln -s /lib/i386-linux-gnu/libpng12.so.0 libpng.so.2
sudo ln -s i386-linux-gnu/libtiff.so.4.3.3 libtiff.so.3
sudo ln -s libxml2.so.2.7.8 libxml.so.1

#7. If you want to add quality and dpi options, edit the ppd file:
{{{
cd /usr/share/cups/model
sudo cp canonpixmaip1500.ppd canonpixmaip1500.ppd.backup
sudo gedit canonpixmaip1500.ppd

Dernière modification par Compte anonymisé (Le 31/07/2011, à 18:29)

#3 Le 02/08/2011, à 14:34

demonipuch

Re : Installer imprimante

Bonjour

Vous pouvez suivre les indications ci-dessus ou vous pouvez ajouter ce ppa dans la liste de vos dépôts et ainsi installer les drivers de votre imprimante via un gestionnaire de paquets.

Ajout du ppa :

sudo add-apt-repository ppa:michael-gruz/canon

Installation des pilotes de l'imprimante :

sudo apt-get update && sudo apt-get install cnijfilter-pixmaip1500series

Hors ligne