Brother printer MFC-J497DW

Trying to get the above printer working with CUPS. Brother says any driver with generic Postscript/PCL should work. I've tried several gutenprint drivers with no exact match. The scanner works.

Current connection:

Code:
socket://192.168.1.66:9100

I get the following cups error_log when printing cups test page:

Code:
 CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id \'Brother_MFC-J497DW-Gray..\' already exists
Code:
[Job 8] The printer is not responding.

The access_log says:

Code:
"POST /printers/bro HTTP/1.1" 200 408 Print-Job successful-ok
The printer lights up and says "receiving data" and cups shows the job completed but nothing prints and printer goes back to sleep.

I've tried several different configurations ie.. ipp, ipps, http, https and most of the gutenprint drivers. seems like I'm close but I'm out of ideas.
 
Pretty much all networked brother printers are capable of hp *jet emulation, i.e. they can be used with generic hp laser/colorjet PCL drivers. Other than that, it may also be capable of BRscript.
Maybe check the web interface of the printer for settings regarding HP *jet or BRScript (and ipp if you're at it - on some printer models it is disabled by default)
 
Brother says any driver with generic Postscript/PCL should work
Can you share where you got this info? Websearches for MFC-J497 and linux indicate 32bit compatility drivers need to be installed. Personally, I'm skeptical that PS/PCL is supported. Brothers low end printers tend to be gdi. That said, what I found at https://www.brother-usa.com/products/mfcj497dw#specification indicates Airprint support.

https://davidandrzejewski.com/2015/12/26/make-any-printer-airprint-compatible-on-freebsd/
 
For the the heck of it, it might be worth trying the anywhere driver. You could try installing the printer with

Code:
lpadmin -p BrotherMFC -E -v ipp://192.168.1.66/ipp/print -m everywhere

The BrotherMFC is a name I chose, you can use whatever you want. You may need sudo or doas for the lpadmn command
 
Back
Top