Results 1 to 10 of 10

Thread: Installing Brother Printer DCP-135C on Hardy Heron

  1. #1
    Join Date
    May 2007
    Beans
    55

    Installing Brother Printer DCP-135C on Hardy Heron

    I recently performed a fresh install of Hardy Heron on my Dell Inspiron 640m. Hence, I had to re-install my printer. Coming from a Microsoft Windows background, this setup took me quite a while to figure out. The Brother: Linux Driver Homepage did not help much in terms of the procedure. Their FAQ was confusing. But, they did provide the drivers that would actually work. Hardy Heron auto-detected the printer but the default driver could not print.
    1. From the Brother Linux Driver Homepage, download the appropriate LPR Printer Driver and CUPS Printer Driver. Note that you should get the Debian package. These turned out to be dcp135clpr-1.0.1-1.i386.deb and dcp135ccupswrapper-1.0.1-1.i386.deb respectively.
    2. In a terminal, type the following
      Code:
      sudo mkdir /usr/share/cups/model
      sudo mkdir /var/spool/lpd/
      sudo mkdir /var/spool/lpd/dcp135c
      These should be performed sequentially. (For some reason, the mkdir command can't seem to create nested directories.)

    3. Install the debian driver package for LPR Printer Driver.
    4. Install the debian driver package for CUPS Printer Driver.

    The Brother printer is now installed. The required ppd file will be installed in /usr/share/cups/model. For some odd reason, the /var/spool/lpd/dcp135c directory cannot be viewed. It claims that I am not the owner. The owner is "lp" and the group is "lp". I presume this to be an issue with access rights.

  2. #2
    Join Date
    Jul 2008
    Beans
    148

    Re: Installing Brother Printer DCP-135C on Hardy Heron

    Quote Originally Posted by growingneeds View Post
    The Brother printer is now installed. The required ppd file will be installed in /usr/share/cups/model. For some odd reason, the /var/spool/lpd/dcp135c directory cannot be viewed. It claims that I am not the owner. The owner is "lp" and the group is "lp". I presume this to be an issue with access rights.
    Just sudo up a file browser, or change the permissions by command line.

    Thanks for the tutorial!

  3. #3
    Join Date
    May 2007
    Beans
    55

    Re: Installing Brother Printer DCP-135C on Hardy Heron

    There is a better way to install the DCP-135C. Before connecting the printer, fire up Synaptic Package Manager and search for "Brother DCP-135C". Install the relevant drivers and turn on the printer.

  4. #4
    Join Date
    Jan 2005
    Location
    Nottingham, England
    Beans
    87
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Installing Brother Printer DCP-135C on Hardy Heron

    How do I 'Install the relevant drivers'?

  5. #5
    Join Date
    Jan 2005
    Location
    Nottingham, England
    Beans
    87
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Installing Brother Printer DCP-135C on Hardy Heron

    To answer my question above I did the following:-

    Installing Brother DCP-135C

    1) Making sure that the printer was turned off, I booted up the computer to Ubuntu 8.04

    2) Opened – System->Administration->Synaptic Package Manager

    2a) Entered my 'Administration' password

    3) Did a search in the Synaptic Package Manager using “Brother DCP-135C” (nb. without the speech marks)

    4) Clicked on the software required
    (in this instance there was two packages showing, but when I 'marked' of them, the other also became marked)

    5) When the software was installed, I turned off the computer

    6) I turned on the printer before rebooting the computer

    7) Opened – System->Administration->Printing

    8) Clicked “New Printer” button

    9) Clicked “Brother DCP-135C USB # 1”

    10) Clicked “Forward” and followed the instructions

    11) When I finished 10) I clicked on the “Test” button to get a test print out

    12) Made the Brother DCP-135C the default printer

    13) Tested a print out using a document through Open Office


    I hope this is of some use.

  6. #6
    Join Date
    Dec 2006
    Location
    Washington, England
    Beans
    126
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Installing Brother Printer DCP-135C on Hardy Heron

    Quote Originally Posted by growingneeds View Post
    There is a better way to install the DCP-135C. Before connecting the printer, fire up Synaptic Package Manager and search for "Brother DCP-135C". Install the relevant drivers and turn on the printer.
    Excellent info, took all of three minutes start to printed test page.
    Thanks.
    __________________________________________________ __________________________________________________
    Toshiba Equuium 100A RR. Asus A54C Mint Nadia. Zoostorm desktop RR.
    Linux user # 456165. Ubuntu user # 19504.

  7. #7
    Join Date
    May 2007
    Beans
    55

    Re: Installing Brother Printer DCP-135C on Hardy Heron

    An update. This will be cleaner, clearer and fresher. Follow this sequentially.

    1. Download the LPR driver. This may be found at http://solutions.brother.com/linux/e...nload_prn.html. Obtain the Debian package. My file was named dcp135clpr-1.0.1-1.i386.deb.
    2. Install the LPR driver.
      Code:
      sudo mkdir /var/spool/lpd/
      sudo mkdir /var/spool/lpd/dcp135c
      Double-click on dcp135clpr-1.0.1-1.i386.deb. Or,
      Code:
      sudo dpkg -i dcp135clpr-1.0.1-1.i386.deb
      Note that for this Debian package to install properly via terminal, it has to be placed in the Home Folder.
    3. Download the CUPSWRAPPER driver. This, again, may be found at http://solutions.brother.com/linux/e...nload_prn.html. My file was named dcp135ccupswrapper-1.0.1-1.i386.deb.
    4. Install the CUPSWRAPPER driver.
      Code:
      sudo mkdir /usr/share/cups/model
      Double-click on dcp135ccupswrapper-1.0.1-1.i386.deb. Or,
      Code:
      sudo dpkg -i dcp135ccupswrapper-1.0.1-1.i386.deb


    The Brother printer DCP-135C is now installed. Just make sure that it is set as the default printer. I had tried to use the drivers provided by ubuntu in the repositories: "brother-lpr-drivers-extra" and "brother-cups-wrapper-extra". But the printouts were all displaced upwards, truncating my documents at the top and leaving lots of white space at the bottom. This was just unacceptable. So, I went back to the drivers kindly provided by Brother. This is an install on Jaunty Jackalope (ubuntu 9.04).
    Last edited by growingneeds; August 6th, 2009 at 04:56 AM. Reason: punctuation

  8. #8
    Join Date
    Feb 2012
    Beans
    1

    Re: Installing Brother Printer DCP-135C on Hardy Heron

    Quote Originally Posted by growingneeds View Post
    I recently performed a fresh install of Hardy Heron on my Dell Inspiron 640m. Hence, I had to re-install my printer. Coming from a Microsoft Windows background, this setup took me quite a while to figure out. The Brother: Linux Driver Homepage did not help much in terms of the procedure. Their FAQ was confusing. But, they did provide the drivers that would actually work. Hardy Heron auto-detected the printer but the default driver could not print.
    1. From the Brother Linux Driver Homepage, download the appropriate LPR Printer Driver and CUPS Printer Driver. Note that you should get the Debian package. These turned out to be dcp135clpr-1.0.1-1.i386.deb and dcp135ccupswrapper-1.0.1-1.i386.deb respectively.
    2. In a terminal, type the following
      Code:
      sudo mkdir /usr/share/cups/model
      sudo mkdir /var/spool/lpd/
      sudo mkdir /var/spool/lpd/dcp135c
      These should be performed sequentially. (For some reason, the mkdir command can't seem to create nested directories.)
    3. Install the debian driver package for LPR Printer Driver.
    4. Install the debian driver package for CUPS Printer Driver.

    The Brother printer is now installed. The required ppd file will be installed in /usr/share/cups/model. For some odd reason, the /var/spool/lpd/dcp135c directory cannot be viewed. It claims that I am not the owner. The owner is "lp" and the group is "lp". I presume this to be an issue with access rights.
    I just registered to say that this (ancient, sorry for grave digging) post works flawlessly on Linux Mint 11 LXDE. An hour ago I was almost convinced this 135C was a paperweight.

  9. #9
    Join Date
    Mar 2008
    Beans
    94

    Re: Installing Brother Printer DCP-135C on Hardy Heron

    Hi all.

    Well Ive done all the above and have a printer that prints. However the positioning is all wrong. I'm trying to print business cards on decadry sheets but the print out is all over the place.

    Can it be adjusted? Im in the UK and we use A4 sheets - which the printer is set up for but none the less its not printing things the way they are set out on the screen. Including text in Libre office (It crops the top line)

    Thanks in advance for any and all advice!

    Anthony

    Ubuntu 12:10

  10. #10
    Join Date
    Jul 2008
    Location
    The Left Coast of the USA
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Installing Brother Printer DCP-135C on Hardy Heron

    Hello.

    Everyone's questions and answers are valuable.

    However, this is a very old thread. If there has been no activity in a thread for a year or so, it is best to start a new one.

    Please feel free to reference this thread in any new one you start.

    Thanks!
    Please read The Forum Rules and The Forum Posting Guidelines

    A thing discovered and kept to oneself must be discovered time and again by others. A thing discovered and shared with others need be discovered only the once.
    This universe is crazy. I'm going back to my own.

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
  •