lpadmin -o (Options) for Konica Minolta bizhub C958

CSCC-JS
Contributor III

I'm attempting to find the -o options for a Konica Minolta bizhub C958 to pre-configure the PaperSource / Finisher extra hardware using lpadmin -o.

Is there an easy way to find all the -o options for this printer?

1 REPLY 1

anverhousseini
Contributor II

You can use this command to get all available options:

lpoptions -p "printer_name" -l

I often output this command into a file:

lpoptions -p "printer_name" -l > /tmp/before

Then making all changes in the CUPS UI on http://localhost:631 and run this command again:

lpoptions -p "printer_name" -l > /tmp/after

Then you can use diff to see the differences:

diff /tmp/before /tmp/after