Installing A Brother MFC 7420 Laser Printer / Scanner in Ubuntu

Written by sean on July 16, 2008 – 6:30 am -

I finally got rid of the little Dell 720 printer I’ve been using.  It did kind of a crappy job, was slow and the ink ran out fast and was expensive.  So the other day I bought a big whopping multifunction laser printer from Brother.

Brother actually supports Linux, so we can get the drivers which is nice. The scanner setup was easy as well and I have included it at the bottom. When you install your 7420, Hardy will detect it and set it up with the wrong printer drivers.

All you need to do for it to work correctly is got to Brother’s web site and download the Linux drivers.

Printer

First get the LPR driver here - Get the Debian Driver

Then get the cups wrapper here - Get the Debian Driver

Now open a terminal and go to where you downloaded the two drivers.

Install the LPR driver FIRST with the dpkg command :
sudo dpkg -i brmfc7420lpr-2.0.1-1.i386.deb
Now install the CUPS wrapper with the dpkg command :
sudo dpkg -i --force-all --force-architecture cupswrapperMFC7420-2.0.1-2.i386.deb

If dpkg complains, you may need to create a missing directory.

Now you should have a printer called MFC7420 and it should work just fine!

I have not tested the scanning portion yet, but I will and let you all know when I do.

Scanner

To get the scanner working all you need to do is download the scanner driver from Brother:

Make sure you get the correct one (which was the brscan2 32bit Debian file for me).  Get it here.

Now install it with dpkg from the command line as well:
$ sudo dpkg -i brscan2-0.2.4-0.i386.deb

Now you should be able to open up xsane and scan away.

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • Reddit
  • StumbleUpon

Tags: , ,
Posted in Hardware |

9 Comments to “Installing A Brother MFC 7420 Laser Printer / Scanner in Ubuntu”

  1. Sean’s Blog » Blog Archive » Installing A Brother MFC 7420 Laser Printer / Scanner in Ubuntu Says:

    [...] This post moved to MadBuntu.com. Go to it here. Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages. [...]

  2. marek Says:

    Hi, thanks a lot. Worked fine!

  3. sean Says:

    Excellent. Glad it worked for you

  4. Dann Says:

    The configuration defaulted to the USB protocol. I have my printer attached to a USRobotics router/print server, so all I had to do to get it to work was:

    1) Select MFC7420 in the Printer Configuration interface
    2) Change the Device URI to ‘LPR/LPD Host’
    3) Enter the IP address of the print server from the router, and the queue name (mine is ‘lp’) in the Printername field

    Then it worked like a champ.

    One note — I found a post that indicated a bug in the Brother CUPS driver that wouldn’t let you print on an A4 size page, so
    I set the ‘Media Size’ to ‘Letter’ under ‘Printer Options’ just to be safe.

  5. sean Says:

    Thanks for the tip Dann, mine is attached via USB, but glad to know it works via print server as well.

    As for the paper size, I’ve never printed to A4, but I’ve done some envelopes and weird size cards without problems.

  6. Instalar impresora multifunción BROTHER MFC-7420 en Linux ( Ubuntu ) « El Blog de Toni Says:

    [...] Básicamente he seguido al pie de la letra un enlace que está en ingles pero me ha sido muy útil y es este [...]

  7. Eric Says:

    Worked great for me too, thanks for the concise summary!

  8. Leslie Says:

    I guess I’m a little thick, but when you write
    “Now open a terminal and go to where you downloaded the two drivers.”
    What do you mean by “…go to where you downloaded the two drivers.”? I downloaded the drivers to a folder on my desktop, opened the folder, and entered the command in the terminal.

    This is what I got back:
    dpkg: error processing brmfc7420lpr-2.0.1-1.i386.deb (–install):
    cannot access archive: No such file or directory
    Errors were encountered while processing:
    brmfc7420lpr-2.0.1-1.i386.deb

    There is something very simple I’m missing, I can feel it….

  9. sean Says:

    Leslie, open the terminal and go to the file.

    in the terminal type pwd
    this will tell you what folder you are in, probably your home folder. /home/leslie for example.

    Now if you downloaded the files to your desktop, that is a different folder that would probably be /home/leslie/Desktop

    you can get there from the command line by typing:
    cd Desktop

    then try running the commands. the command pwd will let you check the folder your in. use ls to make sure you can see the files that you are trying to install. ls will just give you a listing of files and sub folders in the current directory.

    Give that a try and let me know

    Sean

Leave a Comment