Changing the LaserJet Ready Message

by Marion Bates <mbates at whoopis.com>

Last modified: December 31 1969 16:00:00


Quoting from http://www.ancientpond.com/ljshen.html:

The LJ has a number of legitimate messages built in that pop up in cases of low toner, paper out, paper jam, etc. There is one message that appears while there is no error condition: READY. This "Readymessage" indicates that everything is fine, and no intervention is necessary. Now, what a lot of people don't know is that this message can be programmed, by sending a simple escape string to the printer...

A quick recipe for the *nix users (Macs, you need the OS X Developer Tools) -- certainly not the simplest way, but worked for me. We print directly to networked printers, so the whole Windows print server name/domain stuff is N/A. This assumes you know the IP of the printer.

  1. Download this to your Desktop: http://www.ancientpond.com/ljmsg.c

  2. In Terminal, type
    cd Desktop (hit return)
    gcc ljmsg.c (return)
    
    Ignore warning about return type.

  3. 3. Still in Terminal, type
    mv a.out ljmsg (return)
    ./ljmsg YOUR FUNNY MESSAGE | nc ipaddress-of-printer 9100 (return)
    
    Wait 5 or 10 seconds in case the printer's asleep, then hit ctrl-c to exit nc.

    Brief explanation: nc is NetCat, just opens a raw connection to a port, with none of the overhead of telnet. TCP port 9100 is the HP JetDirect port, which is supported by many other brands including Xerox.


    Get Euro-style oval stickers for Geeks!

    NEW -- the "magic/more magic" light switch cover!
    Click here for the story.

    References: