LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint
User Name
Password
Linux Mint This forum is for the discussion of Linux Mint.

Notices


Reply
  Search this Thread
Old 07-17-2011, 05:36 PM   #1
golddust
LQ Newbie
 
Registered: Jul 2011
Posts: 3

Rep: Reputation: Disabled
New user and can't get driver installed for my Brother printer


Wasn't sure whether to put this in Hardware are here in Linux Mint section, but here goes. I'm a new Linux user. Just installed Linux Mint onto my Gateway PC (dual booted with Windows 7). My problem is I can't get my Brother MFC-295CN multi-function network printer driver installed. The only instructions I found uses the Terminal - and this is where I'm really inexperienced. I downloaded the cupswrapper and lpr drivers. They are showing in the Firefox downloads window, but I have no clue where to find them. I also don't know what to type in the terminal window - the example given was too sketchy for a real beginner. Hope someone can help me. If worst comes to worst I can do all my printing on the Windows 7 side of my dual boot, but would rather not have to.
 
Old 07-17-2011, 06:45 PM   #2
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,213

Rep: Reputation: 848Reputation: 848Reputation: 848Reputation: 848Reputation: 848Reputation: 848Reputation: 848
Quote:
They are showing in the Firefox downloads window, but I have no clue where to find them.
In Firefox, click on Edit and then Preferences. You should get a multi-tab set of tabs. Click on the General tab. There is a section for Downloads. That will tell you where the downloads were saved to.
If you can not find them, there is a radio button for "Save Files To". If there is nothing displayed, pick a location. Click on the Browse button, and navigate to a directory somewhere you want to save files to. I suggest somewhere in /home/yourusername/whateverdiryoulike. Then you will know where to look for the files.

Once that is set up, download the files again. I have a Brother printer, although its a different model. Brother has instructions to help you install the drivers. Post back when you have the drivers downloaded, and in a location you can identify.

You will need the root password, or you can use the sudo command to install the drivers. You will still need the root password. Its not hard if you have the password. You would have set it up during installation.
 
Old 07-17-2011, 06:51 PM   #3
golddust
LQ Newbie
 
Registered: Jul 2011
Posts: 3

Original Poster
Rep: Reputation: Disabled
OK, I found them. They are in my Downloads folder. Now what do I do. Don't assume I know anything, because most of what little I know I haven't used in over a year. Just getting back to using Linux again.
 
Old 07-17-2011, 07:00 PM   #4
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,307
Blog Entries: 28

Rep: Reputation: 6136Reputation: 6136Reputation: 6136Reputation: 6136Reputation: 6136Reputation: 6136Reputation: 6136Reputation: 6136Reputation: 6136Reputation: 6136Reputation: 6136
What is the full file name for the downloaded drivers? That will help persons answer your question about how to install them.

Also, don't be scared of the terminal. It's not that difficult.

About dot com has a nice intro designed for newbies (we were all newbies once).
 
Old 07-18-2011, 07:43 AM   #5
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,213

Rep: Reputation: 848Reputation: 848Reputation: 848Reputation: 848Reputation: 848Reputation: 848Reputation: 848
Good, you know where the drivers are.

Open a konsole, it may be called terminal. That is not a big deal as long as you have a command prompt.

Navigate to the download directory, using the change directory command. When you open a terminal, it will normally open in your users home directory. That will be /home/yourusersname/. If download is one sub-directory in, a 'cd download' will get you there.

If you want to verify file names, do a ls command. The files will be listed.

The command to install lpr driver is 'sudo dpkg -i --force-all (lpr-drivername)' Mint is a Debain derivative. So dpkg should do it. The sudo allow you to gain root privileges for one command. You will be prompted for root password; the one you set during install.

Now install the cups wrapper driver. The command is similar to the lpr driver.

'sudo dpkg -i --force-all (cupswrapper-drivername)' will do it. You have to enter the correct driver name for both lpr and cups wrapper driver.

The command 'sudo dpkg -l | grep Brother' will verify the driver got installed.

I didn't ask if you have cups installed. Before you begin, confirm cups is installed and running.

To confirm its running, run the command 'ps aux | grep cupsd' and press enter. If its running you will get some output that looks like this:

Quote:
ps aux | grep cups
root 1712 0.0 0.1 52556 3344 ? Ss 08:13 0:00 /usr/sbin/cupsd -C /etc/cups/cupsd.conf
cliff 2129 0.0 0.0 6848 972 pts/0 S+ 08:32 0:00 grep cups
The first line is critical, note the user root, and the /usr/sbin/cupsd, that is the cups daemon running in the system.

If it does not show up, either cups is not installed ( most likely ) or it is not running. Check the package manager in Mint, and install if necessary. Post if you have cups problems.

You can find the instructions here -->http://welcome.solutions.brother.com...ion_prn1a.html

to install the drivers.

Once the drivers are installed, you have to configure the printer. In a web browser ( does not matter which one ) in the location bar, type http://localhost:631 and press enter. This will work if cups is running, it it is not, you will get a page not found error, and you need to get cups going.

Once you get the Cups page on the browser, there are tabs on the menu. Click on Administration. Click on Add Printer. You will get another screen to fill in. At this point you will get a series of screens to fill in. Most are straight forward. The critical(s) one will ask you the make of the printer, and then give you a list of drivers. The cups wrapper driver should be there, it may be a long list. Find it, select it. You should be done. Try a Print Test Page. It will work if everything is good.

Post your problems, with as much detail as you can manage. Remember we can not see what you are doing, so details help us.

Last edited by camorri; 07-18-2011 at 07:50 AM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Anyone installed a Brother p-Touch label printer? bocacorazon Linux - Hardware 1 02-10-2015 10:02 PM
64-bit Driver for Brother Printer MQMan Linux - Hardware 14 10-22-2009 04:46 PM
Can not get Brother HL2070N network printer installed jgz Ubuntu 1 10-17-2009 10:29 AM
Brother HL2070N network printer installed, print jobs stuck in printer que jgz Linux - Networking 0 02-14-2008 10:54 PM
Brother MFC-5100c printer driver kkaliek Linux - Hardware 1 07-03-2003 08:45 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint

All times are GMT -5. The time now is 10:26 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration