LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-02-2021, 03:55 PM   #1
Lcz13345
LQ Newbie
 
Registered: Aug 2021
Posts: 3

Rep: Reputation: Disabled
Unable to locate printer (Brother)


I'm fairly new to Linux; had to work through my first machine LM 19.3 with my Brother MFCJ-470DW and did.
Now LM 20.2; "Unable to locate printer"
Printer has been reliable on Win7; 10; LM19. USB conx. Went to Brother site to d/l drivers and followed instructions - twice.

Machine is flea market Dell Inspiron 570 AMD Athlon X2 project machine just for the learning experience. Installed new SSD; disconnected original HDD and went to bios to boot from usb; installed Mint 20.2 from flashdrive. Mint did the rest. Reset bios to default. This is not a dual boot. Using it now for web browsing and typing this message.
Other searches brought up issues with ippusbxd; I have searched with Synaptic and terminal and either I deleted it or it was not installed, but it's not on here now.
I've run troubleshooter and it's a blank. Time to make my first post in the linux world - thanks in advance!
 
Old 08-02-2021, 06:40 PM   #2
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,803

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Is the printer a network-connected device? Please run
Code:
sudo lpinfo -v
Is the Brother printer enumerated in the output?
 
Old 08-02-2021, 06:50 PM   #3
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,803

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
For a USB-connected printer start with disconnecting and re-connecting the USB cable and report back with output from

Code:
dmesg|tail
Code:
sudo lpinfo -v
That may help us to advise further.
 
Old 08-02-2021, 07:54 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,323
Blog Entries: 28

Rep: Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142Reputation: 6142
This thread from AskUbuntu may help.
 
Old 08-02-2021, 10:10 PM   #5
Lcz13345
LQ Newbie
 
Registered: Aug 2021
Posts: 3

Original Poster
Rep: Reputation: Disabled
Ok,
thanks for the replies- frankbell, I've tried as many variations of your suggested post as I can with no avail, including going back to the brother site. I've downloaded the installer now 3 times and tried running it, can't get it to happen. All d/l's are in the download file.

Ferrari, I must ask some real noob questions: some of the symbols you use in command lines are new to me. The straight vertical line between dmesg and tail - what is that?
And between sudo and pinfo there's another; like an upright Z; sort of. ???
Sorry to be so clueless, I should probably find a book on Linux for beginners.

I have unplugged the printer; it has been back and forth between my linux and win10 machine where it works fine.
 
Old 08-03-2021, 12:46 AM   #6
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,803

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Quote:
Originally Posted by Lcz13345 View Post
Ferrari, I must ask some real noob questions: some of the symbols you use in command lines are new to me. The straight vertical line between dmesg and tail - what is that?
It is a pipe operator used for interprocess communication - in this case to direct the output of dmesg to the tail command. It effectively presents the last few lines of the kernel ring buffer to the terminal. That's the output I'm interested in, as it should show if the printer is enumerated when first connected. I asked for that as a starting point, as it wasn't clear about how far you'd got through configuration, and this is an indicator of low-level USB-connectivity.

Some further reading for you...
https://www.guru99.com/linux-pipe-grep.html#1
https://linuxconcept.com/tutorial/lo...ipes-in-linux/

Quote:
And between sudo and pinfo there's another; like an upright Z; sort of. ???
Sorry to be so clueless, I should probably find a book on Linux for beginners.
There's no shortcut, except by reading and doing. It takes time and effort, and I'm still learning 20 years later. Not sure what you meant by the upright z. The 'lpinfo' command is used to show available printer devices (as reported by CUPS), even before configuration is undertaken.

Last edited by ferrari; 08-03-2021 at 01:00 AM.
 
Old 08-03-2021, 12:59 AM   #7
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,803

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Quote:
Originally Posted by Lcz13345 View Post
I've downloaded the installer now 3 times and tried running it, can't get it to happen. All d/l's are in the download file.
I assume you actually meant 'Downloads' directory?

This command will show what is contained in the user's Downloads directory...
Code:
ls ~/Downloads
The '~/' part is shorthand for the current user's home folder. So, for user Fred (as an example), it expands to /home/Fred/.

You can change to the Downloads directory with
Code:
cd ~/Downloads
then ensure installer file (often a script) can be executed with
Code:
chmod +x <name_of_installer_file>
substitute '<name_of_installer_file>' with exact case-correct name of actual file.

Then run it (with admin privileges using sudo). For example...
Code:
sudo ./linux-brprinter-installer-2.0.0-1
If all goes well, it should take care of the printer configuration for you. You can verify this to us by using the lpstat command. It will report the configured printer and it's status
Code:
lpstat -t
Yes, lots of terminal commands, but the most effective means to convey configuration steps and confirm important system information to us, and further advise if needed.

Last edited by ferrari; 08-03-2021 at 01:01 AM.
 
Old 08-03-2021, 01:40 AM   #8
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750
The MFC-J470DW likely has a 32-bit only driver. Try adding 32-bit library support on your PC.
 
1 members found this post helpful.
Old 08-03-2021, 01:52 AM   #9
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,803

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Yes, as allend suggests, many of the older Brother drivers are 32-bit, and require 32-bit library support.

https://www.xmodulo.com/install-brot...ter-linux.html
 
1 members found this post helpful.
Old 08-03-2021, 09:27 PM   #10
Lcz13345
LQ Newbie
 
Registered: Aug 2021
Posts: 3

Original Poster
Rep: Reputation: Disabled
Many thanks for patient replies and links for further reading - those look good.
I found this site
https://easylinuxtipsproject.blogspo...-printers.html

and followed instructions and the printer is working.
Also here are instructions for enabling the scanner but had no success with that one. I can get by without scanner if necessary.

Ferrari, your input is much appreciated -I'm only just learning how much I need to learn! But that is part of the reason for going Linux. Glad to be doing this.
Regards!
 
Old 08-03-2021, 10:03 PM   #11
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750Reputation: 2750
It has been reported that some Brother devices with scanning capability have the default scanning mode set to “24bit Color[Fast]” and that this mode is not compatible with Linux. Set your scanning software (e.g. xsane) to use “24bit Color” as the default scanning mode.
Certainly true for my MFC-J825DW.
 
  


Reply



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
Install brother printer - Brother printer support smithk Linux - Software 3 10-07-2020 03:30 PM
[SOLVED] Brother printer HL-2270DW driver - Brother solutions offer four - which one? juneymoon Linux - Software 9 06-15-2013 04:52 PM
[SOLVED] E: Unable to locate package nova-comm E: Unable to locate package python-psycopq2 mint12 Linux - Virtualization and Cloud 2 01-05-2012 12:07 PM
[SOLVED] installation of a brother hl2170w from brother francois.e Slackware 24 10-17-2011 09:44 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 12:24 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