Skip to main content
Question

lpadmin -o (Options) for Konica Minolta bizhub C958

  • July 5, 2019
  • 1 reply
  • 23 views

CSCC-JS
Forum|alt.badge.img+8

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

anverhousseini
Forum|alt.badge.img+12

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