web-dev-qa-db-fra.com

L'installation de brscan4 pour mon scanner Brother ne fonctionne pas avec une nouvelle installation d'Ubuntu 16.10

J'utilise le pilote de mon scanner réseau (DCP-7070DW) avec succès depuis assez longtemps et je l'utilise encore sur un autre ordinateur en cours d'exécution. Mais j’ai du mal à l’installer sur ma nouvelle installation d’Ubuntu 16.10 même si elle fonctionne toujours après la mise à niveau des autres.

L'exécution de scanimage -L échoue avec une erreur de segmentation.

$ ldd /usr/bin/scanimage 
linux-vdso.so.1 =>  (0x00007fffcefad000)
libsane.so.1 => /usr/lib/x86_64-linux-gnu/libsane.so.1 (0x00007fd82ed31000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fd82e96a000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007fd82e766000)
/lib64/ld-linux-x86-64.so.2 (0x00005651dc8dc000)

Si je lance GDB

(gdb) run -L
Starting program: /usr/bin/scanimage -L
[Thread debugging using libthread_db enabled]
Using Host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".

Program received signal SIGSEGV, Segmentation fault.
0x00007ffff73ecd3e in __pthread_initialize_minimal_internal ()
    at nptl-init.c:322
322 nptl-init.c: Aucun fichier ou dossier de ce type.

Mon /etc/sane.d/dll.conf a brother4 comme dernière ligne comme prévu.

J'ai:

  • /usr/lib64/sane/libsane-brother4.so
  • /usr/lib/x86_64-linux-gnu/sane/libsane-brother4.so

Une idée de comment résoudre le problème?

2
Natim

J'ai fait un ldd /usr/lib64/sane/libsane-brother4.so et j'ai:

libusb-0.1.so.4 => not found

J'ai donc deviné qu'il me faudrait installer cette dépendance.

Pour l'installer, lancez simplement: Sudo apt-get install libusb-0.1-4

Et voilà:

$ scanimage -L
device `brother4:net1;dev0' is a Brother DCP7070DW DCP-7070DW
1
Natim