Tente o link abaixo;
Problema:
-name=Scanner---adding type brother
-name=SCANNER_DCP770CW
Meu irmão tipo MFC-J430W.
Estou tendo problemas para fazer o scanner da minha Brother DCP-7055W funcionar em WLAN. Eu já instalei os drivers oficiais da Brother e a própria impressora está funcionando bem.
Configurei o scanner para usar um endereço IP estático (192.168.002.150). Usando o brsaneconfig4
da Brother, adicionei o scanner da seguinte maneira (usando 002
em vez de 2
após esta dica ):
brsaneconfig4 -a name=DCP-7055W model=DCP-7055W ip=192.168.002.150
O ping do scanner funciona bem:
$ brsaneconfig4 -p
test DCP-7055W
ping 192.168.002.150 -w 10
PING 192.168.002.150 (192.168.2.150) 56(84) bytes of data.
64 bytes from 192.168.2.150: icmp_req=1 ttl=255 time=9.21 ms
64 bytes from 192.168.2.150: icmp_req=2 ttl=255 time=5.67 ms
64 bytes from 192.168.2.150: icmp_req=3 ttl=255 time=6.01 ms
64 bytes from 192.168.2.150: icmp_req=4 ttl=255 time=3.33 ms
Também garanti que problema com drivers de 64 bits é fixo:
$ ls -l /usr/lib/sane/libsane-brother4*
lrwxrwxrwx 1 root root 35 Sep 25 07:18 /usr/lib/sane/libsane-brother4.so -> /usr/lib/sane/libsane-brother4.so.1
lrwxrwxrwx 1 root root 39 Sep 25 07:18 /usr/lib/sane/libsane-brother4.so.1 -> /usr/lib/sane/libsane-brother4.so.1.0.7
-rwxr-xr-x 1 root root 129376 Sep 25 07:18 /usr/lib/sane/libsane-brother4.so.1.0.7
Eu também consertei as regras do UDEV de acordo com esta resposta :
$ grep saned /lib/udev/rules.d/40-libsane.rules
ENV{DEVTYPE}=="usb_device", MODE="0664", OWNER="root", GROUP="saned"
No entanto, não consigo digitalizar: seja qual for a ferramenta que eu tente, recebo o seguinte erro:
$ scanimage -T
scanimage: open of device brother4:net1;dev0 failed: Invalid argument
Isso acontece tanto como usuário normal quanto ao usar sudo
, por isso não deve ser um problema de permissão.
O que estou perdendo?
UPDATE 1: Agora, com uma saída de depuração mais detalhada:
# SANE_DEBUG_BROTHER4=255 scanimage
[sanei_debug] Setting debug level of brother4 to 255.
[brother4] brother init
[brother4] brother version: 1000001
[brother4] starting bus scan
[brother4] scanning bus 005
[brother4] found dev 0483/2016
[brother4] found dev 1D6B/0001
[brother4] scanning bus 004
[brother4] found dev 1D6B/0001
[brother4] scanning bus 003
[brother4] found dev 1D6B/0001
[brother4] scanning bus 002
[brother4] found dev 1D6B/0001
[brother4] scanning bus 001
[brother4] found dev 18A5/0302
[brother4] found dev 1D6B/0002
scanimage: open of device brother4:net1;dev0 failed: Invalid argument
UPDATE 2: Agora também tentei usar o scanner via USB. Eu recebo o mesmo erro ("argumento inválido"), mas em um momento posterior no processo de verificação:
# SANE_DEBUG_BROTHER4=255 scanimage -T
[sanei_debug] Setting debug level of brother4 to 255.
[brother4] brother init
[brother4] brother version: 1000001
[brother4] starting bus scan
[brother4] scanning bus 005
[brother4] found dev 0483/2016
[brother4] found dev 1D6B/0001
[brother4] scanning bus 004
[brother4] found dev 1D6B/0001
[brother4] scanning bus 003
[brother4] found dev 1D6B/0001
[brother4] scanning bus 002
[brother4] found dev 1D6B/0001
[brother4] scanning bus 001
[brother4] found dev 04F9/02CE
[brother4] found dev 1D6B/0002
scanimage: rounded value of br-x from 215.9 to 215.88
scanimage: rounded value of br-y from 355.6 to 355.567
scanimage: sane_start: Invalid argument
[brother4] cancel called...
Uma Perguntas frequentes sobre o scanner da Brother menciona que isso poderia ser devido à área de digitalização ser pequena, mas passar -x 100 -y 100
para scanimage
não altera nada. Eu também tentei passar explicitamente todos os outros argumentos que scanimage -h
retornaram para o scanner, mas sem sucesso.
Instalando libsane-extras
, como sugerido aqui não muda nada.
Após a solução de problemas semelhantes , eu corri
# strace -o strace.out -f scanimage -T
No final da saída, há o seguinte:
4019 ioctl(151, USBDEVFS_SUBMITURB or USBDEVFS_SUBMITURB32, 0xbfbfe0a8) = -1 ENOENT (No such file or directory)
4019 gettimeofday({1387487538, 170759}, NULL) = 0
4019 ioctl(151, USBDEVFS_SUBMITURB or USBDEVFS_SUBMITURB32, 0xbfbfe0a8) = -1 ENOENT (No such file or directory)
4019 gettimeofday({1387487538, 170926}, {4294967236, 0}) = 0
4019 gettimeofday({1387487538, 171013}, {4294967236, 0}) = 0
4019 gettimeofday({1387487538, 171104}, NULL) = 0
4019 ioctl(151, USBDEVFS_SUBMITURB or USBDEVFS_SUBMITURB32, 0xbfbfe068) = -1 ENOENT (No such file or directory)
4019 write(2, "scanimage: sane_start: Invalid a"..., 40) = 40
4019 ioctl(151, USBDEVFS_CONTROL or USBDEVFS_CONTROL32, 0xbfbfe2e0) = 5
4019 ioctl(151, USBDEVFS_RELEASEINTERFACE, 0xbfbfe304) = 0
4019 semop(1245186, {{0, 1, SEM_UNDO}}, 1) = 0
4019 semctl(1245186, 0, IPC_64|IPC_RMID, 0xbfbfe2b8) = 0
4019 close(151) = 0
4019 munmap(0xb755a000, 134532) = 0
4019 munmap(0xb7525000, 104424) = 0
4019 munmap(0xb751b000, 38084) = 0
4019 munmap(0xb74ef000, 176256) = 0
4019 exit_group(4) = ?
O log inteiro está cheio de ioctl
chamadas referentes a USBDEFVS_SUBMITURB
e recebendo No such file or directory
. No entanto, eu não sei o suficiente sobre os componentes internos do Linux para entender isso.
UPDATE 3: meu kernel:
# uname -r
3.2.0-57-generic-pae
Saída relevante de dmesg
:
[10210.399432] usb 1-1: usbfs: interface 0 claimed by usblp while 'scanimage' sets config #1
[10210.399446] usb 1-1: usbfs: process 5347 (scanimage) did not claim interface 1 before use
[10211.428906] usb 1-1: usbfs: interface 0 claimed by usblp while 'scanimage' sets config #1
[10213.519554] usb 1-1: usbfs: interface 0 claimed by usblp while 'scanimage' sets config #1
[10213.519567] usb 1-1: usbfs: process 5352 (scanimage) did not claim interface 1 before use
[10214.549025] usb 1-1: usbfs: interface 0 claimed by usblp while 'scanimage' sets config #1
Tente o link abaixo;
Problema:
-name=Scanner---adding type brother
-name=SCANNER_DCP770CW
Meu irmão tipo MFC-J430W.
Parece que o pacote .deb do driver da Brother instala o driver sane no diretório errado para o Ubuntu 16.04. Tente o seguinte:
Copie todos os arquivos de / usr / lib64 para / usr / lib
sudo cp /usr/lib64/* /usr/lib
Copie todos os arquivos de / usr / lib64 / sane para / usr / lib / x86_64-linux-gnu / sane ou / usr / lib / sane
sudo cp /usr/lib64/sane/* /usr/lib/sane
sudo cp /usr/lib64/sane/* /usr/lib/x86_64-linux-gnu/sane