pense-bête de bruno sanchiz

Accueil > Linux > Imprimantes, scanner, cups > installer une imprimante BROTHER

installer une imprimante BROTHER

Publié le 24 avril 2020, dernière mise-à-jour le 11 janvier 2026, > 34 visites, >> 200516 visites totales.

commencer par Installer une imprimante

bullseye : installer les programmes suivant : cups cups-browsed cups-client cups-common cups-core-drivers cups-daemon cups-filters cups-filters-core-drivers cups-pk-helper cups-ppdc cups-server-common foomatic-db-compressed-ppds foomatic-db-engine openprinting-ppds printer-driver-cups-pdf printer-driver-hpcups printer-driver-cjet printer-driver-all python3-cups sane-airscan simple-scan system-config-printer xsane cups-pdf gutenprint-locales hplip hplip-gui
#lpr
buster : installer les programmes suivant :
cups cups-browsed cups-client cups-common cups-core-drivers cups-daemon cups-filters cups-filters-core-drivers cups-pk-helper cups-ppdc cups-server-common foomatic-db-compressed-ppds foomatic-db-engine openprinting-ppds printer-driver-cups-pdf printer-driver-hpcups python-cups printer-driver-cjet system-config-printer xsane simple-scan printer-driver-all cups-pdf gutenprint-locales hplip hplip-gui

puis en root ( remplacer machin par l’utilisateur )

 adduser machin lp  ; adduser machin lpadmin

méthode 1

Chercher brother sur le site. https://www.brother.co.uk/support/drivers par exemple brother dcp-j772dw mais les gros cons de brother ont malheuresement oublié de dire dans leur mail que les drivers n’existent pas en français., donc , driver en anglais.

  • télécharger Driver Install Tool : on obtient linux-brprinter-installer-2.2.1-1.gz
  • décompresser on obtient linux-brprinter-installer-2.2.1-1
  • l’exécuter en root :
    chmod a+x linux-brprinter-installer-2.2.1-1 && ./linux-brprinter-installer-2.2.1-1
    • répondre Yes ( en tapant Y ) pour toutes les questions
    • sauf à la question Will you specify the Device URI ? [Y/n] ->y où j’ai répondu Y qui donne la question select the number of destination Device URI. -> où j’ai répondu 15 car 15 correspondait à auto : Auto. (usb ://Brother/DCP-J772DW ?serial=E74235L9H776925)
  • remarques : on a des erreurs avec l’absence de ia32-libs mais ça marche quand même

méthode 2

wget -T 10 -nd --no-cache https://www.brother.com/pub/bsc/linux/packages/dcpj772dwpdrv-1.0.5-0.i386.deb && wget -T 10 -nd --no-cache https://www.brother.com/pub/bsc/linux/packages/brscan4-0.4.11-1.amd64.deb && wget -T 10 -nd --no-cache https://www.brother.com/pub/bsc/linux/packages/brscan-skey-0.3.2-0.amd64.deb

apt-get install lib32z1 lib32ncurses[5-9]

dpkg -i --force-all dcpj772dwpdrv-1.0.5-0.i386.deb && dpkg -i --force-all brscan4-0.4.11-1.amd64.deb && dpkg -i --force-all brscan-skey-0.3.2-0.amd64.deb

Au final

s’assurer que le fichier
/opt/brother/Printers/dcpj772dw/cupswrapper/brother_lpdwrapper_dcpj772dw
a pour permissions -rwxr-xr-x ,soit :

chmod 755 /opt/brother/Printers/dcpj772dw/cupswrapper/brother_lpdwrapper_dcpj772dw

voir aussi : Installer une imprimante

[bruno sanchiz]