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.

  • monkeyman512@lemmy.world
    link
    fedilink
    English
    arrow-up
    16
    ·
    5 days ago

    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.

  • StrawberryPigtails@discuss.tchncs.de
    link
    fedilink
    arrow-up
    12
    ·
    5 days ago

    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.

    • queerlilhayseed@piefed.blahaj.zone
      link
      fedilink
      English
      arrow-up
      1
      ·
      4 days ago

      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.

  • mystic-macaroni@lemmy.ml
    link
    fedilink
    arrow-up
    10
    ·
    5 days ago

    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

  • molten_boron@sh.itjust.works
    link
    fedilink
    arrow-up
    7
    ·
    4 days ago

    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.

  • Tetsuo@jlai.lu
    link
    fedilink
    arrow-up
    9
    ·
    5 days ago

    I’m not familiar with Mint but couldn’t OP just boot on a liveUSB and check if it works ?

    • moonpiedumplings@programming.dev
      link
      fedilink
      arrow-up
      6
      ·
      5 days ago

      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,

      • epyon22@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        2
        ·
        5 days ago

        Linux (Ubuntu at least) has been more out of the box compatible with printers than any other os I’ve used

    • grte@lemmy.ca
      link
      fedilink
      arrow-up
      3
      ·
      5 days ago

      Possibly they are looking to buy a printer and don’t yet have it.

  • pinball_wizard@lemmy.zip
    link
    fedilink
    arrow-up
    6
    ·
    4 days ago

    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.

  • unwarlikeExtortion@lemmy.ml
    link
    fedilink
    arrow-up
    4
    ·
    4 days ago

    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.

  • azimir@lemmy.ml
    link
    fedilink
    arrow-up
    3
    ·
    4 days ago

    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.

    • TruePe4rl@lemmy.ml
      link
      fedilink
      English
      arrow-up
      1
      ·
      22 hours ago

      Just a small note, scanning is handled by SANE. So you have to look for that is some form, when troubleshooting.

  • IsoKiero@sopuli.xyz
    link
    fedilink
    English
    arrow-up
    3
    ·
    5 days ago

    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.

  • ejs@piefed.social
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    4 days ago

    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
    • softotteep@pawb.social
      link
      fedilink
      English
      arrow-up
      3
      ·
      4 days ago

      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.

      • ejs@piefed.social
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 days ago

        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.

        • steel_for_humans@piefed.social
          link
          fedilink
          English
          arrow-up
          1
          ·
          4 days ago

          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 wget and then manually run apt install with the downloaded file. That’s what I’ve been doing. :) Yours is “magic” ;)