I’m more of a casual/newbie Linux user and I want to know if a specific Brother model is compatible with it. For reference, it’s the HL-L2465DW monochrome laser printer.
Trust me. It is.
You’re a stranger saying something on the internet, so it must be true.
Look up elsewhere about the reputation Brother has with compatibility. Personal experience: never fails. That’s their jam.
Have printed using a brother printer from linux mint. It was easier than any other time ive done it lol.
I just googled that model number and “Linux support”. The first result was the Brother website for driver downloads, which does include packages for linux.
Brother Printers have a well deserved reputation. They work. You will probably need their proprietary drivers (which you can get from their website), but after that they just work.
I know they make a .deb available, but I think there’s also a .rpm if you’re repping Redhat land.
I’ve never had this particular model, but I’ve had pretty good success printing off Brother printers with the generic print drivers, I don’t think I’ve used the proprietary downloads in a while.
Of note: I don’t have occasion to do scans all that often, so I can’t say if that works. Ditto the fax function, if that’s important all I can say is you have my pity. But I’ve used the print function to good success on a couple different machines.
Still I’d recommend testing it before committing to permanent changes, if possible. Printers are mysterious and capricious.
I had a harder time setting up a brother printer on my dad’s computer running windows than I did on my mom’s running Mint
If you look closely at the front of the printer, there should be a label of some kind. All printers have one, and it shouldn’t be too difficult to find. The one you’ll want will start with a “B”. If the rest of the label is “rother”, then it’ll probably be compatible.
I’m not familiar with Mint but couldn’t OP just boot on a liveUSB and check if it works ?
Yes this is the best way.
On Linux I’ve never had to install drivers for any printers, it comes with a “generic” driver that works for a ton of brands,
Linux (Ubuntu at least) has been more out of the box compatible with printers than any other os I’ve used
Possibly they are looking to buy a printer and don’t yet have it.
With Linux Mint, I haven’t had to install any drivers for printers in the last few years. Your mileage may vary.
Remember that you can boot to a Linux Mint USB stick to try it out, and just remove the stick and reboot to go back to Windows, afterwards.
CUPS is the UNIX (i.e. both Linux AND Mac) print software. For some reason it’s maintained by Apple.
So chances are if a printer works on Mac (which it will), it’ll also work on Linux (which it does).
You only need to find the right “print driver” which is actually just a preset for CUPS. Scrolling the list can be quite annoying if you don’t know where to look, as it’s highly unlikely to find your exact model listed (which doesn’t mean others won’t work - they will. It’s just hit or miss sometimes if the autodetect doesn’t work).
That being said, if you’re shopping for a printer and have the ability to choose, try checking the manufacturer support website for “Linux drivers” (i.e. ppd files). Most should turn something up.
For some reason it’s maintained by Apple.
Hasn’t been for a few years now, the maintained fork is OpenPrinting CUPS.
The question is really: How do I check if a specific printer is compatible with CUPS (Common Unix Printing System).
Mint (and most other distros) use CUPS to manage printers and printing. I’d check there.
That said, Brother printers are often supported. The company is proactive on Linux drivers and tools, but I don’t know about your specific device.
Once my HP LJ4 died many years ago, I moved to Brother laserjets and have never looked back. They’re great.
If it’s got a scanner also make sure to check out the GUI scanner tool in Mint/Cinnamon: Document Scanner It has been phenomenal for initiating network-based scanning using our printers, even handling multiplexing and simple page re-ordering issues.
Just a small note, scanning is handled by SANE. So you have to look for that is some form, when troubleshooting.
Maybe check here https://forums.linuxmint.com/viewtopic.php?t=453422
The most reliable way to know is to run Mint on a USB stick and try it.
Mine just worked. Didn’t install anything extra
https://openprinting.org/printers/manufacturer/Brother
Unfortunately your model doesn’t seem to be on that list. Brother provides linux drivers for some of their models, but they tend to be a bit of a pain to get installed (I’ve got HL-3040CN). Once you get the brother drivers ready the thing just works, and I guess part of the issues I’ve had is that my model is pretty old and drivers haven’t been updated in a decade or so.
If you already have the printer just plug it in to a mint computer and you’ll soon find out.
Thanks! Gonna copy that link to my saved notes
Ask y’all’s mom!
I’m sorry. I’ll see myself out.
That printer probably supports AirPrint, which Mint supports without any extra tinkering. Connect the printer to your network, and try going through linux mint and adding the printer through the settings. If it doesn’t show up, then you can try using drivers (install using below command) and then re-adding the printer
Install by pasting this into your terminal. Enter your password when prompted.
TMP_DEB=$(mktemp --suffix=.deb) && curl -sSL "https://support.brother.com/g/b/downloadend.aspx?c=us&lang=en&prod=hll2465dw_us&os=128&dlid=dlf106036_000&flang=4&type3=10283" -o "$TMP_DEB" && sudo apt install -y "$TMP_DEB" && rm -f "$TMP_DEB"Explanation if you want to learn:
- Brother offers drivers online
- Download the “linux printer driver (.deb package)”
- Then, to install onto your system, use your package manager and tell it to install the package you downloaded
sudo apt install ./Downloads/package_name.deb
Please don’t encourage Linux noobs to paste random shit into their terminal and type in their password. It’s the absolute easiest way to get hacked on Linux.
I certainly wasn’t trying to “encourage” anything. I agree, blindly trusting commands is dangerous.
In this context I present a specific explanation of how the install works. This adds to the novice’s knowledge, and allows them to begin to understand what my one-liner does.
I think that without the context of instructions on how to do it manually, yes, you could make the case i’m enabling beginners to form/reinforce bad habits.
As a Linux noob I like your oneliner but I agree with @[email protected]
A more approachable way to do that would be to use
wgetand then manually runapt installwith the downloaded file. That’s what I’ve been doing. :) Yours is “magic” ;)








