Results 1 to 2 of 2

Thread: Brother Multi-Function Laser Jet

  1. #1
    Join Date
    Dec 2007
    Location
    California
    Beans
    7
    Distro
    Ubuntu 8.04 Hardy Heron

    Brother Multi-Function Laser Jet

    Hello all. This is a quick guide to getting a Brother Laser printer/scanner working in Ubuntu. IF you are using version 19.10 you will need to enable the software sources for 18.04 LTS in order to get the scanner to work using sane. I wanted to write this because there is no real place that had all the answers need to make all the functions work. Please keep in mind this will work only on USB connection and I did not configure this for networking.

    If you go to this link there is a helpful tool to help get the drivers : https://support.brother.com/g/b/prod...=en&content=dl

    Step1. Download the tool.(linux-brprinter-installer-*.*.*-*.gz)

    The tool will be downloaded into the default "Download" directory.
    (The directory location varies depending on your Linux distribution.)
    e.g. /home/(LoginName)/Download

    Step2. Open a terminal window.

    Step3. Go to the directory you downloaded the file to in the last step. By using the cd command.

    e.g. cd Downloads

    Step4. Enter this command to extract the downloaded file:

    Command: gunzip linux-brprinter-installer-*.*.*-*.gz

    e.g. gunzip linux-brprinter-installer-2.1.1-1.gz

    Step5. Get superuser authorization with the "su" command or "sudo su" command.

    Step6. Run the tool:

    Command: bash linux-brprinter-installer-*.*.*-* Brother machine name
    e.g. bash linux-brprinter-installer-2.1.1-1 MFC-J880DW

    Step7. The driver installation will start. Follow the installation screen directions.


    When you see the message "Will you specify the DeviceURI ?",

    For USB Users: Choose N(No)
    For Network Users: Choose Y(Yes) and DeviceURI number.

    The install process may take some time. Please wait until it is complete.

    This will get your printer online as long as you have followed the steps in the setup in the terminal. However, your scanner will not work. To get your scanner to work on Ubuntu 19.10 you will need to to the following.

    Code:
    sudo apt-add-repository http://cz.archive.ubuntu.com/ubuntu
    Code:
    sudo apt-get update
    Code:
    sudo apt-get install libsane-extras
    Code:
    cd /lib/udev/rules.d/
    From here you will need to find your libsane.rules file. Mine was located at 60-libsane.rules but depending on version you are using you will need to find yours. This is a quick bit of info I took from a German website that had published some info on this as well:

    In the file /lib/udev/rules.d/55-libsane.rules (in version 16.04 the file is called /lib/udev/rules.d/60-libsane.rules and in version 18.04 /lib/udev/rules.d / 60-libsane.rules !) Add this line to the end of the file:

    Code:
    sudo nano xx-libsane.rules
    Replace the xx with your corresponding number for where the file is located on the system.

    Add this line to the end of the file and save it.

    Code:
    # Brother scanners
    ATTRS{idVendor}=="04f9", ATTRS{idProduct}=="00ab", MODE="0660", GROUP="scanner", ENV{libsane_matched}="yes"
    Reboot

    Now your scanner should be working. IF you get a message when trying to scan that you cannot connect to the scanner you have one last step. You will need to add your non non root user name to the group lp.

    sudo adduser YOURNONROOTUSERNAME lp

    to make sure scanner belongs to lp group:

    Code:
    sudo sane-find-scanner
    
    found USB scanner (vendor=0x04f9, product=0x02a5) at libusb:001:002
    
    ls -al /dev/bus/usb/001/002
    
    crw-rw-r-- 1 root lp 189, 1 Nov 24 12:43 /dev/bus/usb/001/002
    Reboot and everything should work perfectly. Hope this helps someone. Here are the links that I went through as I compiled this guide here:

    https://superuser.com/questions/2982...er-sudo-ubuntu
    https://wiki.ubuntuusers.de/Scanner/Brother/
    https://askubuntu.com/questions/7915...iver-installed

  2. #2
    Join Date
    Jun 2006
    Location
    UK
    Beans
    Hidden!
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Re: Brother Multi-Function Laser Jet

    Thread moved to Tutorials sub-forum.

    https://ubuntuforums.org/showthread.php?t=2143602
    Ubuntu 20.04 Desktop Guide - Ubuntu 22.04 Desktop Guide - Forum Guide to BBCode - Using BBCode code tags

    Member: Not Canonical Team

    If you need help with your forum account, such as SSO login issues, username changes, etc, the correct place to contact an admin is here. Please do not PM me about these matters unless you have been asked to - unsolicited PMs concerning forum accounts will be ignored.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •