Brother DCP-7065DN, Ubuntu 14.04 64bit: Can print to network printer but cannot use the scan function
Solution 1:
Download and install drivers from the Brother website.
Select 'Driver Install Tool' download and install. This will install the lpr, CUPSwrapper and scanner drivers. Make sure you get the right ones for your operating system (i.e. 64-bit or 32-bit). I did this step over and over again and so I can't remember whether the package installed the right ones first time or not. The brother website has instructions for installing the drivers, make sure you follow them.
Open terminal and enter
brsaneconfig4
This should come up with something like this
USAGE: brsaneconfig4 [-OPTION] OPTION:
-a name=FRIENDLY-NAME model=MODEL-NAME ip=xx.xx.xx.xx
-a name=FRIENDLY-NAME model=MODEL-NAME nodename=BRN_xxxxx
: Add network scanner
-r FRIENDLY-NAME [FRIENDLY-NAME ...]
: Remove network scanner
-q : Query supported models and available network scanners
-d : Diagnosis
-p : Ping (for network scanners)
-s:[LABEL] : Save current configuration
-l:[LABEL] : Load saved configuration
Find the IP address by plugging in and turning on the printer and then hitting the menu button until you get 'Network' press the down arrow button to select 'TCP/IP' then 'IP Address'. Alternatively you can do this by using brsaneconfig4
brsaneconfig4 -p
Then you'll have to create your scanner for the scanner programs to see by entering this in terminal
brsaneconfig4 name=put the name you want to call your printer here model=DCP7065DN ip=xxx.xxx.xxx.xxx
where x's are the numbers from the IP address you've just discovered. Then RESTART YOUR COMPUTER!!
sudo reboot
To get the scan button to work you need to run the scan key (this bit is apparently 64bit or 32bit specific) so there may be some issues here if you don't have the right one.
brscan-skey
then test if it sees your scanner
brscan-skey -l
this should show you the name you just entered for the scanner.
Edit Apparently you need to run brscan-skey command once every session that you want to use the scan key. Open Startup Applications and enter
brscan-skey
as a command to get it to run automatically.
Apparently you need to have gimp installed to use the printer/scanner scan button. It is certainly the program that opens the scans on my computer.
You need to have installed sane-utils, but brother mention this in their instructions.
All done! Good luck!
p.s The printer stopped working over the network for only my ubuntu computers after an update. I found that it was not accepting full length ip addresses (that is 3digits.3digits.3digits.3digits). It started working again after I took out any zeroes at the start of any 3digit sequence, so .066 became .66 in the device url section of the printer properties under printers in the general settings e.g
socket://192.168.001.066
became
socket://192.168.1.66
Solution 2:
In my case, the upgrade modified the sane dll config file.
I discovered this:
/etc/sane.d/dll.conf.dpkg-old
... that contained the line
brother3
while /etc/sane.d/dll.conf
just said
brother
After updating dll.conf
scanning worked immediately.
I am on Ubuntu 14.04, using a Brother MFC-7440N network-attached (which uses a brscan3 driver).
Solution 3:
Thank You! I had to tweak your solution a little but for others who may be having this problem here is what I did... (And I apologize, I don't know how highlight the commands).
In terminal:
brsaneconfig4 -a name=BrotherMFC-J470DW model=MFC-J470DW ip=xxx.xxx.x.xx
(Note : I removed the leading zeros in the IP)
brscan-skey
brscan-skey -l
I also added the brscan-skey
to the Application Startup as suggested.
Everything works like a charm!
Thanks again! Jodie